Skip to content

Commit

Permalink
fix compat
Browse files Browse the repository at this point in the history
  • Loading branch information
Jutho committed Jun 16, 2021
1 parent d48c256 commit c12478f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ Primes = "27ebfcd6-29c5-5fa9-bf4b-fb8fc14df3ae"
LRUCache = "8ac3fa9e-de4c-5943-b1dc-09c6b5f20637"

[compat]
RationalRoots = "0.1 - 1"
RationalRoots = "0.1 - 0.9"
HalfIntegers = "1"
Primes = "0.4 - 1"
Primes = "0.4 - 0.9"
LRUCache = "1.3"
julia = "1.5"

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ may be added in the future).
WignerSymbols.jl does no longer store the Wigner 3j and 6j symbols in a `Dict` cache, but
rather in an `LRU` cache from [LRUCache.jl](https://github.com/JuliaCollections/
LRUCache.jl). Hence, it no longer stores all Wigner symbols ever computed, but only the
most recent ones. By default, it stores the $10^6$ most recent ones, which is probably
equivalent to storing all of them in most use cases. This number can be changed via the
interface
most recent ones, and it that sense this is a (softly) breaking release. By default, it
stores the $10^6$ most recent ones, which is probably equivalent to storing all of them in
most use cases. This number can be changed via the interface
```julia
WignerSymbols.set_buffer3j_size(; maxsize = ...)
WignerSymbols.set_buffer6j_size(; maxsize = ...)
Expand Down

2 comments on commit c12478f

@Jutho
Copy link
Owner Author

@Jutho Jutho commented on c12478f Jun 16, 2021

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 updated: JuliaRegistries/General/38926

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 v2.0.0 -m "<description of version>" c12478f6f051ac6fdb31bb8a208cfde9b208bcbc
git push origin v2.0.0

Please sign in to comment.