Skip to content

Commit c68111a

Browse files
authored
Merge pull request #13 from JuliaParallel/release
Prepare for release
2 parents 612c9c6 + d528b30 commit c68111a

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
version:
2626
- 'nightly'
2727
- '1'
28+
- '1.9'
2829
os:
2930
- ubuntu-latest
3031
- macOS-latest
@@ -35,6 +36,9 @@ jobs:
3536
exclude:
3637
- os: macOS-latest
3738
arch: x86
39+
- os: windows-latest # Killing workers doesn't work on windows in 1.9
40+
version: '1.9'
41+
3842
steps:
3943
- uses: actions/checkout@v4
4044
- uses: julia-actions/setup-julia@v2

Project.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
77
Serialization = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
88
Sockets = "6462fe0b-24de-5631-8697-dd941f90decc"
99

10+
[compat]
11+
Random = "1"
12+
Serialization = "1"
13+
Sockets = "1"
14+
julia = "1.9"
15+
1016
[extras]
1117
LibSSH = "00483490-30f8-4353-8aba-35b82f51f4d0"
1218
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"

docs/src/_changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ CurrentModule = DistributedNext
77
This documents notable changes in DistributedNext.jl. The format is based on
88
[Keep a Changelog](https://keepachangelog.com).
99

10-
## Unreleased
10+
## [v1.0.0] - 2024-12-02
1111

1212
### Fixed
1313
- Fixed behaviour of `isempty(::RemoteChannel)`, which previously had the

test/distributed_exec.jl

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -762,7 +762,7 @@ end
762762
# since they print errors. The test block is enabled by defining env
763763
# JULIA_TESTFULL=1.
764764

765-
DoFullTest = Base.get_bool_env("JULIA_TESTFULL", false)
765+
DoFullTest = get(ENV, "JULIA_TESTFULL", "0") == "1"
766766

767767
if DoFullTest
768768
println("Testing exception printing on remote worker from a `remote_do` call")
@@ -1435,7 +1435,11 @@ v2669=10
14351435
thrown = true
14361436
local b = IOBuffer()
14371437
showerror(b, e)
1438-
@test occursin("sqrt was called with a negative real argument", String(take!(b)))
1438+
if VERSION < v"1.10"
1439+
@test occursin("sqrt will only return a complex result", String(take!(b)))
1440+
else
1441+
@test occursin("sqrt was called with a negative real argument", String(take!(b)))
1442+
end
14391443
end
14401444
@test thrown
14411445
end

0 commit comments

Comments
 (0)