Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CHANGELOG.md to Diff.cabal, fix formatting in CHANGELOG.md. #10

Merged
merged 1 commit into from
Oct 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
# 0.5

- Bring space complexity down to D^2 (Bodigrim)
- Add Bifunctor instance (Jonathan King.) Requires base >= 4.8.
- Fix for the grouped context diff. It was omitting all trailing
context.
- Allow unlimited number of context elements (getContextDiffNew)
- Bring space complexity down to D^2 (Bodigrim).
- Add `Bifunctor` instance (Jonathan King). Requires `base` >= 4.8.
- Fix for the grouped context diff. It was omitting all trailing contexts.
- Allow unlimited number of context elements (`getContextDiffNew`).

# 0.4

- Generalize `Diff a` to `PolyDiff a b`. `Diff` has been replaced with
a specialized synonym `type Diff a = PolyDiff a a`, but it's still not
backward compatible if you imported `Diff(..)`.
- Generalize `Diff a` to `PolyDiff a b`.
`Diff` has been replaced with a specialized synonym `type Diff a = PolyDiff a a`,
but it's still not backward compatible if you imported `Diff(..)`.
4 changes: 3 additions & 1 deletion Diff.cabal
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
Cabal-Version: 1.18
name: Diff
version: 0.5
synopsis: Diff algorithm in pure Haskell
Expand All @@ -15,7 +16,8 @@ Tested-With: GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GH
GHC == 8.8.4, GHC == 8.10.7, GHC == 9.0.2, GHC == 9.2.8, GHC == 9.4.7,
GHC == 9.6.3, GHC == 9.8.1
Build-Type: Simple
Cabal-Version: >= 1.10

extra-doc-files: CHANGELOG.md

library
default-language: Haskell2010
Expand Down