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 2c233b8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 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
2 changes: 1 addition & 1 deletion 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

0 comments on commit 2c233b8

Please sign in to comment.