diff --git a/generic-lens-core/ChangeLog.md b/generic-lens-core/ChangeLog.md index 0e98b714..44cc51bf 100644 --- a/generic-lens-core/ChangeLog.md +++ b/generic-lens-core/ChangeLog.md @@ -1,2 +1,5 @@ +## generic-lens-core-2.1.0.0 (2021-01-25) +- Expose Data.Generics.Product.Internal.Subtype (#127, Tom Harding) + ## generic-lens-core-2.0.0.0 (2020-02-11) - Initial release diff --git a/generic-lens-core/generic-lens-core.cabal b/generic-lens-core/generic-lens-core.cabal index fcabebc0..a9ce615d 100644 --- a/generic-lens-core/generic-lens-core.cabal +++ b/generic-lens-core/generic-lens-core.cabal @@ -1,5 +1,5 @@ name: generic-lens-core -version: 2.0.0.0 +version: 2.1.0.0 synopsis: Generically derive traversals, lenses and prisms. description: This library uses GHC.Generics to derive efficient optics (traversals, lenses and prisms) for algebraic data types in a type-directed way, with a focus on good type inference and error messages when possible. . diff --git a/generic-lens/ChangeLog.md b/generic-lens/ChangeLog.md index 19c23ad4..dffaa607 100644 --- a/generic-lens/ChangeLog.md +++ b/generic-lens/ChangeLog.md @@ -1,3 +1,6 @@ +## generic-lens-2.1.0.0 (2021-01-25) +- Bump to generic-lens-core-2.1.0.0 + ## generic-lens-2.0.0.0 (2020-02-11) - Drop support for GHC < 8.4 - Better inference for `field'` diff --git a/generic-lens/generic-lens.cabal b/generic-lens/generic-lens.cabal index 77369661..b88d3659 100644 --- a/generic-lens/generic-lens.cabal +++ b/generic-lens/generic-lens.cabal @@ -1,5 +1,5 @@ name: generic-lens -version: 2.0.0.0 +version: 2.1.0.0 synopsis: Generically derive traversals, lenses and prisms. description: This library uses GHC.Generics to derive efficient optics (traversals, lenses and prisms) for algebraic data types in a type-directed way, with a focus on good type inference and error messages when possible. . @@ -45,7 +45,7 @@ library , Data.Generics.Internal.VL.Iso build-depends: base >= 4.11 && < 5 - , generic-lens-core == 2.0.0.0 + , generic-lens-core == 2.1.0.0 , profunctors , text >= 1.2 && < 1.3 @@ -102,4 +102,4 @@ test-suite doctests ghc-options: -threaded main-is: doctest.hs build-depends: base >4 && <5, doctest - hs-source-dirs: examples \ No newline at end of file + hs-source-dirs: examples diff --git a/generic-optics/ChangeLog.md b/generic-optics/ChangeLog.md index 99db0ad5..d52c891a 100644 --- a/generic-optics/ChangeLog.md +++ b/generic-optics/ChangeLog.md @@ -1,2 +1,5 @@ +## generic-optics-2.1.0.0 (2021-01-25) +- Bump to generic-lens-core-2.1.0.0 + ## generic-optics-2.0.0.0 (2020-02-11) - Initial release diff --git a/generic-optics/generic-optics.cabal b/generic-optics/generic-optics.cabal index 955ca53a..09a954a5 100644 --- a/generic-optics/generic-optics.cabal +++ b/generic-optics/generic-optics.cabal @@ -1,5 +1,5 @@ name: generic-optics -version: 2.0.0.0 +version: 2.1.0.0 synopsis: Generically derive traversals, lenses and prisms. description: This library uses GHC.Generics to derive efficient optics (traversals, lenses and prisms) for algebraic data types in a type-directed way, with a focus on good type inference and error messages when possible. . @@ -42,7 +42,7 @@ library other-modules: Data.Generics.Internal.Optics build-depends: base >= 4.11 && < 5 - , generic-lens-core == 2.0.0.0 + , generic-lens-core == 2.1.0.0 , optics-core >= 0.2 && < 1.0 , text >= 1.2 && < 1.3 @@ -97,4 +97,4 @@ test-suite doctests ghc-options: -threaded main-is: doctest.hs build-depends: base >4 && <5, doctest - hs-source-dirs: examples \ No newline at end of file + hs-source-dirs: examples