Skip to content

Commit

Permalink
add release notes, bump to 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rfourquet committed May 18, 2023
1 parent 9b5310d commit 24ed569
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
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.2.7"
version = "0.3.0"

[deps]
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,11 @@ recompiled (fixed by https://github.com/JuliaLang/julia/pull/30830);
3) prior to Julia version 1.4: creating arrays of types of size not a power of two easily leads
to errors and segfaults (cf. e.g. https://github.com/rfourquet/BitIntegers.jl/issues/1, fixed by
https://github.com/JuliaLang/julia/pull/33283).

## Release notes

### v0.3.0

* change and document how `promote_rule` is implemented ([#36](https://github.com/rfourquet/BitIntegers.jl/pull/36))
* export `@define_integers`
* fix performance bug in bitshift for widths <= 128 bits

2 comments on commit 24ed569

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

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.0 -m "<description of version>" 24ed56946bc24eb6ef2a49d9b1ae2bdce18a839d
git push origin v0.3.0

Please sign in to comment.