Skip to content

Releases: saxbophone/arby

Misc fixes and improvements

19 Feb 22:46
f5a5a08
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.5.0...v0.5.1

v0.5.0

04 Jul 18:43
0219468
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.4.2...v0.5.0

v0.4.2

27 May 08:46
v0.4.2
2f92e30
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.4.1...v0.4.2

Minor docs fix

26 May 14:42
v0.4.1
02a611d
Compare
Choose a tag to compare
v0.4.1

Minor docs fix

v0.4.0

26 May 14:24
v0.4.0
8a3cf4e
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.3.1...v0.4.0

Bugfix release v0.3.1

25 May 08:56
v0.3.1
e9452e3
Compare
Choose a tag to compare
  • Nat::from_float() no longer produces leading zeroes and error when called with float in range 0..<1
  • Changed return type of Nat::divmod() from tuple to pair
  • Precompile arby's header when used in the test suite
  • Misc. docs changes

Here follows an auto-generated summary of the changes:

What's Changed

  • feat divmod: change return type to std::pair by @deadb0d4 in #87
  • Bugfix: leading zero error when creating Nat from float by @saxbophone in #92

New Contributors

Full Changelog: v0.3.0...v0.3.1

Open-sourced v0.3.0

24 May 07:28
v0.3.0
9c77a3f
Compare
Choose a tag to compare
  • renamed Uint to Nat
  • switched digits storage to custom constexpr doubly-linked-list to support constexpr on platforms lacking constexpr std::vector
  • added more unit tests and fixed some bugs

Now almost entirely constexpr!

20 May 05:11
v0.2.0
937dc9e
Compare
Choose a tag to compare

Using a custom-made constexpr doubly-linked-list type, Uint is now almost entirely constexpr, except for conversion to and from string, and for conversion from float.

Basic version

15 May 05:29
v0.1.0
c30ac95
Compare
Choose a tag to compare

No bit-shifting in this one, unsigned only.