Skip to content

Commit

Permalink
Update to julia 1.11 (#92)
Browse files Browse the repository at this point in the history
* update  CI and deps

* Update Project.toml
  • Loading branch information
lpawela authored Jan 9, 2025
1 parent c9133d2 commit 897fab7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.10'
- '1.11'
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
Expand Down
12 changes: 6 additions & 6 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "SpinGlassPEPS"
uuid = "2c514f87-1261-494e-8566-326879aaf4fe"
version = "1.4.0"
version = "1.5.0"

[deps]
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
Expand All @@ -13,11 +13,11 @@ SpinGlassTensors = "7584fc6a-5a23-4eeb-8277-827aab0146ea"

[compat]
Reexport = "1.0"
SpinGlassEngine = "1.5.0"
SpinGlassExhaustive = "1.0.0"
SpinGlassNetworks = "1.3.0"
SpinGlassTensors = "1.1.3"
julia = "1.10"
SpinGlassEngine = "1.6.0"
SpinGlassExhaustive = "1.1.0"
SpinGlassNetworks = "1.4.0"
SpinGlassTensors = "1.3.0"
julia = "1.11"

[extras]
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
Expand Down

2 comments on commit 897fab7

@lpawela
Copy link
Member Author

@lpawela lpawela commented on 897fab7 Jan 9, 2025

Choose a reason for hiding this comment

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

@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/122645

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 v1.5.0 -m "<description of version>" 897fab75159e59fb9463bcf300b905c73e7a02e3
git push origin v1.5.0

Also, note the warning: Version 1.5.0 skips over 1.4.0
This can be safely ignored. However, if you want to fix this you can do so. Call register() again after making the fix. This will update the Pull request.

Please sign in to comment.