From 1d8d97771b04a3420ba79d714be733a954cbe4ce Mon Sep 17 00:00:00 2001 From: toyboot4e Date: Sun, 12 Jan 2025 19:19:52 +0900 Subject: [PATCH] bump `1.1.0.0` --- CHANGELOG.md | 17 ++++++++--------- README.md | 4 ++-- ac-library-hs.cabal | 2 +- 3 files changed, 11 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d6b908..e5b0bb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,16 +2,15 @@ ## 1.1.0.0 -- Jan 2025 -- `RangeSetId` and `RangeAddId` modules are removed from `AtCoder.Extra.Monoid`. -* Added `segActWithLength` to `SegAct`. -* `SegAct` is implemented for `RangeSet` / `RangeAdd` and `Max` / `Min`. -* Added `build1` to `AtCoder.Internal.Csr`. -* Added a bunch of extra modules. - - TODO: details +- Removed `RangeSetId` and `RangeAddId` from `AtCoder.Extra.Monoid`. +- Implemented `SegAct` for `RangeSet`, `RangeAdd` and `Max`, `Min`. +- Added `segActWithLength` to `SegAct`. +- Added `build1` to `AtCoder.Internal.Csr`. +- Added a bunch of extra modules. ## 1.0.0.0 -- Dec 2024 -* First version. -* Added ACL-compatible modules. -* Added Extra module of `Math` (binary exponentiation) and `Monoid` (`SegAct` instances). +- First version. +- Added ACL-compatible modules. +- Added Extra module of `Math` (binary exponentiation) and `Monoid` (`SegAct` instances). diff --git a/README.md b/README.md index 1ea8b48..68a2842 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,8 @@ Haskell port of [ac-library](https://github.com/atcoder/ac-library), a library f ## Notes - The library is mainly for AtCoder and only GHC 9.8.4 is guaranteed to be supported. -- It primarily uses half-open intervals `[l, r)`. -- The `Extra` module provides with extra contents not in the original `ac-library`. Note that they're less tested! +- Functions primarily use half-open interval \([l, r)\). +- The extra module contains additional utilities beyond the original C++ library. ## Usage diff --git a/ac-library-hs.cabal b/ac-library-hs.cabal index c3339e6..aaeaca7 100644 --- a/ac-library-hs.cabal +++ b/ac-library-hs.cabal @@ -4,7 +4,7 @@ name: ac-library-hs -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change -version: 1.0.0.1 +version: 1.1.0.0 synopsis: Data structures and algorithms description: Haskell port of [ac-library](https://github.com/atcoder/ac-library), a library for competitive