From 2f314e3fd582753753b1ec3296a3b33da1d1607b Mon Sep 17 00:00:00 2001 From: Preetham Gujjula Date: Sat, 21 Dec 2024 21:03:54 -0800 Subject: [PATCH] Add release history to ChangeLog.md We add a complete release history for each release, including the actual initial release and any revisions to the release. We also clean up the ChangeLog entries a little. --- CHANGELOG.md | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 45a3a68..ec10da9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,20 +3,26 @@ SPDX-FileCopyrightText: Copyright Preetham Gujjula SPDX-License-Identifier: BSD-3-Clause --> -# Changelog +# Changelog for primecount -## 0.1.0.1 (Revision 1) +## 0.1.0.1 -### Updated -* Allow tasty-1.5. +### Release History -## 0.1.0.1 +| Release | Date | Tag | +| --------------- | ---------- | ---------------- | +| Initial Release | 2023-08-24 | [`0.1.0.1`] | +| Revision 1 | 2023-09-11 | [`0.1.0.1-rev1`] | ### Updated -* CI now supports GHC versions 9.6.2, 9.4.5, 9.2.8, 9.0.2, and 8.10.7. +* Supported versions are now: 8.10, 9.0, 9.2, 9.4, and 9.6. ## 0.1.0.0 +| Release | Date | Tag | +| --------------- | ---------- | ---------------- | +| Initial Release | 2022-01-07 | [`0.1.0.0`] | + ### Added * `Math.NumberTheory.Prime.Count.FFI`, with FFI bindings to all functions from the `primecount` library. @@ -26,5 +32,8 @@ SPDX-License-Identifier: BSD-3-Clause * Test coverage of `primePi`, `nthPrime`, and `primePhi` with `tasty-hunit`. * Benchmarks of `primePi`, `nthPrime`, and `primePhi` with `tasty-bench`. * Full Haddock documentation coverage. -* Support for GHC 9.2.1, 9.0.1, 8.10.7, 8.8.4, 8.6.5, and 8.4.4, and - libprimecount v7.x, verified by GitHub Actions. +* Support for GHC 8.4, 8.6, 8.8, 8.10, 9.0, and 9.2. + +[`0.1.0.1-rev1`]: https://github.com/pgujjula/primecount-haskell/releases/tag/0.1.0.1-rev1 +[`0.1.0.1`]: https://github.com/pgujjula/primecount-haskell/releases/tag/0.1.0.1 +[`0.1.0.0`]: https://github.com/pgujjula/primecount-haskell/releases/tag/0.1.0.0