Skip to content

Commit

Permalink
update README & version
Browse files Browse the repository at this point in the history
  • Loading branch information
rfourquet committed Sep 16, 2024
1 parent 2c329d4 commit d3b8d29
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "BitIntegers"
uuid = "c3b6d118-76ef-56ca-8cc7-ebb389d030a1"
authors = ["Rafael Fourquet <[email protected]>"]
version = "0.3.1"
version = "0.3.2"

[deps]
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Expand Down
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ make LLVM abort the program, while it was fine for `Int256`).

There are another couple of outstanding issues:

1) the intrinsics for division operations used to make LLVM fail for widths greater than 128 bits,
1) prior to Julia version 1.11: the intrinsics for division operations used to make LLVM fail for widths
greater than 128 bits,
so they are here implemented via conversion to `BigInt` first, which makes them quite slow;
it got slightly better in recent julia (nightly pre-1.10), where it prints
`JIT session error: Symbols not found: [ __divei4 ]` but at least doesn't abort.
Expand All @@ -54,6 +55,12 @@ https://github.com/JuliaLang/julia/pull/33283).

## Release notes

### v0.3.2

* add `bitrotate` ([#42](https://github.com/rfourquet/BitIntegers.jl/pull/42))
* fix performance bug for `iseven` ([#44](https://github.com/rfourquet/BitIntegers.jl/pull/44))
* faster division for types bigger than 16 bytes on julia v1.11 ([#48](https://github.com/rfourquet/BitIntegers.jl/pull/48))

### v0.3.1

* fix incorrect `bswap` for odd byte-sizes ([#41](https://github.com/rfourquet/BitIntegers.jl/pull/41))
Expand Down

4 comments on commit d3b8d29

@rfourquet
Copy link
Owner Author

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/115294

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

@rfourquet
Copy link
Owner Author

Choose a reason for hiding this comment

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

@JuliaRegistrator register

Release notes:

  • add bitrotate
  • fix performance bug for iseven
  • faster division for types bigger than 16 bytes on julia v1.11

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

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

Please sign in to comment.