Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v2.0.0 #12

Merged
merged 2 commits into from
Oct 4, 2024
Merged

Release v2.0.0 #12

merged 2 commits into from
Oct 4, 2024

Commits on Oct 4, 2024

  1. Release v2.0.0

    Version 1.0.0 had largely the same behavior that development versions did.  In particular,
    `ilog2(x)` threw a `DomainError` for most integer types with `x` less than or equal to
    zero. But other types, such as `Float64` did not cause a `DomainError` to be thrown, and instead
    returned `ilog2(abs(x))`.
    
    Version `2.0.0` extends the behavior for integers to all types. Now there is a single entry point
    to `ilog2` that makes this check.
    jlapeyre committed Oct 4, 2024
    Configuration menu
    Copy the full SHA
    6041f6b View commit details
    Browse the repository at this point in the history
  2. Fix test for Julia 1.5 and earlier

    One test is slightly different for Julia 1.5 and earlier
    jlapeyre committed Oct 4, 2024
    Configuration menu
    Copy the full SHA
    559d682 View commit details
    Browse the repository at this point in the history