align-equal 1.0.1.1 → 1.0.1.2
raw patch · 3 files changed
+10/−1 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +6/−0
- align-equal.cabal +1/−1
- test/Spec.hs +3/−0
CHANGELOG.md view
@@ -1,6 +1,12 @@ # Changelog All notable changes to the `align-equal` project will be documented in this file. +## [1.0.1.2] - 2025-04-04++### Added+- Added a test case to ensure `adjustText` returns the input unchanged when there are no `=` characters in any line.+- Improved test coverage to 100%.+ ## [1.0.1.1] - 2025-04-04 ### Changed
align-equal.cabal view
@@ -1,6 +1,6 @@ cabal-version: 3.0 name: align-equal-version: 1.0.1.1+version: 1.0.1.2 license: MIT license-file: LICENSE author: Joonkyu Park (based on original work by Gabriella Gonzalez)
test/Spec.hs view
@@ -43,3 +43,6 @@ it "handles empty input correctly" $ do adjustText "" `shouldBe` ""++ it "returns input unchanged when there are no '=' characters in any line" $ do+ adjustText "foo\nbar\nbaz" `shouldBe` "foo\nbar\nbaz"