Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
Setting the minimum supported version to 1.9 so that we can use package
extensions in the future.
  • Loading branch information
JamesWrigley committed Dec 1, 2024
1 parent 612c9c6 commit a6d2f0b
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
version:
- 'nightly'
- '1'
- '1.9'
os:
- ubuntu-latest
- macOS-latest
Expand All @@ -35,6 +36,7 @@ jobs:
exclude:
- os: macOS-latest
arch: x86

steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
Expand Down
6 changes: 6 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Serialization = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
Sockets = "6462fe0b-24de-5631-8697-dd941f90decc"

[compat]
Random = "1"
Serialization = "1"
Sockets = "1"
julia = "1.9"

[extras]
LibSSH = "00483490-30f8-4353-8aba-35b82f51f4d0"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Expand Down
2 changes: 1 addition & 1 deletion docs/src/_changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ CurrentModule = DistributedNext
This documents notable changes in DistributedNext.jl. The format is based on
[Keep a Changelog](https://keepachangelog.com).

## Unreleased
## [v1.0.0] - 2024-12-02

### Fixed
- Fixed behaviour of `isempty(::RemoteChannel)`, which previously had the
Expand Down
8 changes: 6 additions & 2 deletions test/distributed_exec.jl
Original file line number Diff line number Diff line change
Expand Up @@ -762,7 +762,7 @@ end
# since they print errors. The test block is enabled by defining env
# JULIA_TESTFULL=1.

DoFullTest = Base.get_bool_env("JULIA_TESTFULL", false)
DoFullTest = get(ENV, "JULIA_TESTFULL", "0") == "1"

if DoFullTest
println("Testing exception printing on remote worker from a `remote_do` call")
Expand Down Expand Up @@ -1435,7 +1435,11 @@ v2669=10
thrown = true
local b = IOBuffer()
showerror(b, e)
@test occursin("sqrt was called with a negative real argument", String(take!(b)))
if VERSION < v"1.10"
@test occursin("sqrt will only return a complex result", String(take!(b)))
else
@test occursin("sqrt was called with a negative real argument", String(take!(b)))
end
end
@test thrown
end
Expand Down

0 comments on commit a6d2f0b

Please sign in to comment.