Skip to content

Commit

Permalink
CompatHelper: bump compat for BlockBandedMatrices to 0.13, (keep exis…
Browse files Browse the repository at this point in the history
…ting compat) (#124)

* CompatHelper: bump compat for BlockBandedMatrices to 0.13, (keep existing compat)

* Bumped version

* Explicit dependence on {Block,Fill}Arrays

---------

Co-authored-by: CompatHelper Julia <[email protected]>
Co-authored-by: Stefanos Carlström <[email protected]>
  • Loading branch information
3 people committed Jul 7, 2024
1 parent 6e4f62e commit d946f8b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,24 @@
name = "AtomicLevels"
uuid = "10933b4c-d60f-11e8-1fc6-bd9035a249a1"
authors = ["Stefanos Carlström <[email protected]>"]
version = "0.1.10"
version = "0.1.11"

[deps]
BlockArrays = "8e7c35d0-a365-5155-bbbb-fb81a777f24e"
BlockBandedMatrices = "ffab5731-97b5-5995-9138-79e8c1846df0"
Combinatorics = "861a8166-3701-5b0c-9a16-15d98fcdc6aa"
FillArrays = "1a297f60-69ca-5386-bcde-b61e274b549b"
Format = "1fa38f19-a742-5d3f-a2b9-30dd87b9d5f8"
HalfIntegers = "f0d1745a-41c9-11e9-1dd9-e5d34d218721"
Parameters = "d96e819e-fc66-5662-9728-84c9c7592b0a"
UnicodeFun = "1cfade01-22cf-5700-b092-accc4b62d6e1"
WignerSymbols = "9f57e263-0b3d-5e2e-b1be-24f2bb48858b"

[compat]
BlockBandedMatrices = "0.8, 0.9, 0.10, 0.11, 0.12"
BlockArrays = "1"
BlockBandedMatrices = "0.8, 0.9, 0.10, 0.11, 0.12, 0.13"
Combinatorics = "1"
FillArrays = "1"
Format = "1.3"
HalfIntegers = "1"
Parameters = "0.12"
Expand Down
2 changes: 2 additions & 0 deletions src/AtomicLevels.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ using UnicodeFun
using Format
using Parameters
using BlockBandedMatrices
using BlockArrays
using FillArrays
using WignerSymbols
using HalfIntegers
using Combinatorics
Expand Down

2 comments on commit d946f8b

@jagot
Copy link
Member

@jagot jagot commented on d946f8b Jul 7, 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/110580

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.1.11 -m "<description of version>" d946f8b37046f083719bd676348c0fafbacbee33
git push origin v0.1.11

Please sign in to comment.