Skip to content

Commit 44c49b2

Browse files
Allow building with containers 0.8
1 parent b747a4b commit 44c49b2

File tree

6 files changed

+18
-6
lines changed

6 files changed

+18
-6
lines changed

microlens-ghc/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.4.15.1
2+
3+
* Allow building with containers 0.8.
4+
15
# 0.4.15.0
26

37
* New minor release (microlens-0.4.14.0).

microlens-ghc/microlens-ghc.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: microlens-ghc
2-
version: 0.4.15.0
2+
version: 0.4.15.1
33
synopsis: microlens + array, bytestring, containers, transformers
44
description:
55
Use this package instead of <http://hackage.haskell.org/package/microlens microlens> if you don't mind depending on all dependencies here – @Lens.Micro.GHC@ reexports everything from @Lens.Micro@ and additionally provides orphan instances of microlens classes for packages coming with GHC (<http://hackage.haskell.org/package/array array>, <http://hackage.haskell.org/package/bytestring bytestring>, <http://hackage.haskell.org/package/containers containers>, <http://hackage.haskell.org/package/transfromers transformers>).
@@ -45,7 +45,7 @@ library
4545
build-depends: array >=0.3.0.2 && <0.6
4646
, base >=4.5 && <5
4747
, bytestring >=0.9.2.1 && <0.13
48-
, containers >=0.4.0 && <0.8
48+
, containers >=0.4.0 && <0.9
4949
, microlens ==0.4.14.*
5050
, transformers >=0.2 && <0.7
5151

microlens-pro/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.2.0.4
2+
3+
* Allow building with containers 0.8.
4+
15
# 0.2.0.3
26

37
* [#186](https://github.com/stevenfontanella/microlens/issues/186) Export [`AsEmpty`](https://hackage.haskell.org/package/microlens-pro/docs/Lens-Micro-Pro.html#t:AsEmpty) typeclass.

microlens-pro/microlens-pro.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: microlens-pro
2-
version: 0.2.0.3
2+
version: 0.2.0.4
33
synopsis: Prisms and isomorphisms for microlens
44
description:
55
This package provides lens-compatible 'Prism' and 'Iso'. Consequently, it
@@ -55,7 +55,7 @@ library
5555
-- other-modules:
5656
-- other-extensions:
5757
build-depends: base >=4.5 && <5
58-
, containers >=0.4.0 && <0.8
58+
, containers >=0.4.0 && <0.9
5959
, unordered-containers >=0.2.4 && <0.3
6060
, microlens >=0.4.11.3 && <0.5
6161
, microlens-th >=0.4.3.3 && <0.5

microlens-th/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.4.3.17
2+
3+
* Allow building with containers 0.8.
4+
15
# 0.4.3.16
26

37
* [#182](https://github.com/stevenfontanella/microlens/pull/182) Support GHC 9.12.

microlens-th/microlens-th.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: microlens-th
2-
version: 0.4.3.16
2+
version: 0.4.3.17
33
synopsis: Automatic generation of record lenses for microlens
44
description:
55
This package lets you automatically generate lenses for data types; code was extracted from the lens package, and therefore generated lenses are fully compatible with ones generated by lens (and can be used both from lens and microlens).
@@ -42,7 +42,7 @@ library
4242
-- other-extensions:
4343
build-depends: base >=4.5 && <5
4444
, microlens >=0.4.0 && <0.5
45-
, containers >=0.5 && <0.8
45+
, containers >=0.5 && <0.9
4646
, transformers
4747
, template-haskell >=2.8 && <2.24
4848
, th-abstraction >=0.4.1 && <0.8

0 commit comments

Comments
 (0)