Skip to content

Commit

Permalink
Increase julia compat to 1.9 (#46)
Browse files Browse the repository at this point in the history
* test new julia release

* update CI
  • Loading branch information
nhz2 authored Jan 29, 2024
1 parent daac667 commit b683168
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 16 deletions.
18 changes: 4 additions & 14 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.8'
- '1.9'
- '1'
# - 'nightly'
os:
Expand All @@ -26,21 +26,13 @@ jobs:
arch:
- x64
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v1
env:
cache-name: cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
show-versioninfo: true
- uses: julia-actions/cache@v1
- name: Develop packages
run: |
julia --project=test -e '
Expand All @@ -53,8 +45,6 @@ jobs:
- name: Print package status
run: |
julia --project=test -e '
using InteractiveUtils
versioninfo()
using Pkg
Pkg.status(;mode=Pkg.PKGMODE_MANIFEST)'
- name: Run tests
Expand Down
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "SmallZarrGroups"
uuid = "d423b6e5-1c84-4ae2-8d2d-b903aee15ac7"
authors = ["nhz2 <[email protected]>"]
version = "0.8.3"
version = "0.8.4"

[deps]
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"
Expand All @@ -26,4 +26,4 @@ JSON3 = "1"
StructArrays = "0.6"
TranscodingStreams = "0.9, 0.10"
ZipArchives = "1"
julia = "1.8"
julia = "1.9"

2 comments on commit b683168

@nhz2
Copy link
Member Author

@nhz2 nhz2 commented on b683168 Jan 29, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/99793

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.8.4 -m "<description of version>" b68316868caa543c3170d64d9828a072989acd8f
git push origin v0.8.4

Please sign in to comment.