Skip to content

Commit

Permalink
Bump version (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
barucden authored Nov 14, 2024
1 parent 2d21720 commit 8df1a58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "Decimals"
uuid = "abce61dc-4473-55a0-ba07-351d65e31d42"
version = "0.4.1"
version = "0.5.0"

[deps]
ScopedValues = "7e506255-f358-4e82-b7e4-beb19740aa63"
Expand Down

2 comments on commit 8df1a58

@barucden
Copy link
Collaborator 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:

This version, 0.5.0, brings huge changes, some of which are breaking.

All of the supported arithmetic operations have been rewritten in order to comply with the decimal floating-point standard. Correctness of the new implementation is supported by a large test suite ("dectests").

The user facing changes are the following:

  • conversions between Decimal and numbers from Base has changed
  • parsing Decimals from strings has changed (and is now more complete)
  • the arguments of normalize and round functions are different
  • users can set so-called context to change the precision (which used to be constant), rounding mode, and minimum/maximum exponent

The current state is described in the new documentation webpage available at http://juliamath.github.io/Decimals.jl/.

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

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.5.0 -m "<description of version>" 8df1a589591ea8c7564f4ab9bcbb1b92713b4c71
git push origin v0.5.0

Please sign in to comment.