diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..7751163 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,35 @@ +# Changelog + +## 0.2.6 + +- Update to Unicode 16.0.0. + +## 0.2.5 + +- Update to Unicode 15.1.0. + +## 0.2.4 + +- Update to Unicode 15.0.0. +- Replace `const` tables with `static` tables. + +## 0.2.3 + +- Update to Unicode 14.0.0. + +## 0.2.2 + +- Add an ASCII fast-path. + +## 0.2.1 + +- Update to Unicode 13.0.0. +- Speed up lookup. + +## 0.2.0 + +- Update to Unicode 12.1.0. + +## 0.1.0 + +- Initial release. diff --git a/README.md b/README.md index 5a1f0c8..7aebffc 100644 --- a/README.md +++ b/README.md @@ -22,40 +22,3 @@ fn main() { unicode-xid supports a `no_std` feature. This eliminates dependence on std, and instead uses equivalent functions from core. - - -# changelog - -## 0.2.6 - -- Update to Unicode 16.0.0. - -## 0.2.5 - -- Update to Unicode 15.1.0. - -## 0.2.4 - -- Update to Unicode 15.0.0. -- Replace `const` tables with `static` tables. - -## 0.2.3 - -- Update to Unicode 14.0.0. - -## 0.2.2 - -- Add an ASCII fast-path. - -## 0.2.1 - -- Update to Unicode 13.0.0. -- Speed up lookup. - -## 0.2.0 - -- Update to Unicode 12.1.0. - -## 0.1.0 - -- Initial release.