From 414f00c79a892156f049f5fde21908cdf695db62 Mon Sep 17 00:00:00 2001 From: Azriel Hoh Date: Mon, 17 Feb 2020 11:29:38 +1300 Subject: [PATCH] Added `CHANGELOG.md`. --- CHANGELOG.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..66095cf --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,17 @@ +# CHANGELOG + +## 0.6.3 (2020-02-17) + +* `BitSetAnd`, `BitSetOr`, `BitSetNot`, `BitSetXor`, `BitSetAll` now implement `Clone`. ([#52]) +* Bitset layers can be read though `BitSet::layer{0,1,2}_as_slice`. ([#53]) +* `rayon` is updated to `1.3`. ([#56]) + +[#52]: https://github.com/amethyst/hibitset/pull/52 +[#53]: https://github.com/amethyst/hibitset/pull/53 +[#56]: https://github.com/amethyst/hibitset/pull/56 + +## 0.6.2 (2019-07-27) + +* `BitIter` now implements `Clone`. ([#49]) + +[#49]: https://github.com/amethyst/hibitset/pull/49