Skip to content

Commit 7d509d4

Browse files
Bump versions
1 parent a8d75ac commit 7d509d4

File tree

14 files changed

+41
-13
lines changed

14 files changed

+41
-13
lines changed

microlens-contra/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.1.0.4
2+
3+
* Bump version for microlens 0.5.
4+
15
# 0.1.0.3
26

37
* [#161](https://github.com/stevenfontanella/microlens/pull/161) Fix GHC 9.4 warnings for using `~` without TypeOperators

microlens-contra/microlens-contra.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: microlens-contra
2-
version: 0.1.0.3
2+
version: 0.1.0.4
33
synopsis: True folds and getters for microlens
44
description:
55
This package provides @Fold@ and @Getter@ that are fully compatible with lens; the downside is that this package depends on contravariant, which in its turn depends on a lot of other packages (but still less than lens).
@@ -44,7 +44,7 @@ library
4444
-- other-modules:
4545
-- other-extensions:
4646
build-depends: base >=4.5 && <5
47-
, microlens >=0.4 && <0.5
47+
, microlens >=0.5 && <0.6
4848
if impl(ghc < 8.6)
4949
build-depends: contravariant >=1.3 && <2
5050

microlens-ghc/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.4.15.2
2+
3+
* Bump version for microlens 0.5.
4+
15
# 0.4.15.1
26

37
* Allow building with containers 0.8.

microlens-ghc/microlens-ghc.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: microlens-ghc
2-
version: 0.4.15.1
2+
version: 0.4.15.2
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>).
@@ -46,7 +46,7 @@ library
4646
, base >=4.5 && <5
4747
, bytestring >=0.9.2.1 && <0.13
4848
, containers >=0.4.0 && <0.9
49-
, microlens ==0.4.14.*
49+
, microlens ==0.5.0.*
5050
, transformers >=0.2 && <0.7
5151

5252
ghc-options:

microlens-mtl/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.2.1.1
2+
3+
* Bump version for microlens 0.5.
4+
15
# 0.2.1.0
26

37
* Export `Zoomed` type family.

microlens-mtl/microlens-mtl.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: microlens-mtl
2-
version: 0.2.1.0
2+
version: 0.2.1.1
33
synopsis: microlens support for Reader/Writer/State from mtl
44
description:
55
This package contains functions (like 'view' or '+=') which work on 'MonadReader', 'MonadWriter', and 'MonadState' from the mtl package.
@@ -41,7 +41,7 @@ library
4141
Lens.Micro.Mtl.Internal
4242
-- other-extensions:
4343
build-depends: base >=4.5 && <5
44-
, microlens >=0.4 && <0.5
44+
, microlens >=0.5 && <0.6
4545
, mtl >=2.0.1 && <2.4
4646
, transformers >=0.2 && <0.7
4747
, transformers-compat >=0.4 && <1

microlens-platform/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.4.4.2
2+
3+
* Bump version for microlens 0.5.
4+
15
# 0.4.4.0
26

37
* New minor release (microlens-0.4.14.0, microlens-mtl-0.2.1.0).

microlens-platform/microlens-platform.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: microlens-platform
2-
version: 0.4.4.1
2+
version: 0.4.4.2
33
synopsis: microlens + all batteries included (best for apps)
44
description:
55
This package exports a module which is the recommended starting point for using <http://hackage.haskell.org/package/microlens microlens> if you aren't trying to keep your dependencies minimal. By importing @Lens.Micro.Platform@ you get all functions and instances from <http://hackage.haskell.org/package/microlens microlens>, <http://hackage.haskell.org/package/microlens-th microlens-th>, <http://hackage.haskell.org/package/microlens-mtl microlens-mtl>, <http://hackage.haskell.org/package/microlens-ghc microlens-ghc>, as well as instances for @Vector@, @Text@, and @HashMap@.
@@ -44,7 +44,7 @@ library
4444
-- other-extensions:
4545
build-depends: base >=4.5 && <5
4646
, hashable >=1.1.2.3 && <1.6
47-
, microlens ==0.4.14.*
47+
, microlens ==0.5.0.*
4848
, microlens-ghc ==0.4.15.*
4949
, microlens-mtl ==0.2.1.*
5050
, microlens-th ==0.4.3.*

microlens-pro/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.2.0.5
2+
3+
* Bump version for microlens 0.5.
4+
15
# 0.2.0.4
26

37
* Allow building with containers 0.8.

microlens-pro/microlens-pro.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: microlens-pro
2-
version: 0.2.0.4
2+
version: 0.2.0.5
33
synopsis: Prisms and isomorphisms for microlens
44
description:
55
This package provides lens-compatible 'Prism' and 'Iso'. Consequently, it
@@ -57,7 +57,7 @@ library
5757
build-depends: base >=4.5 && <5
5858
, containers >=0.4.0 && <0.9
5959
, unordered-containers >=0.2.4 && <0.3
60-
, microlens >=0.4.11.3 && <0.5
60+
, microlens >=0.5.0.0 && <0.6
6161
, microlens-th >=0.4.3.3 && <0.5
6262
, microlens-contra >=0.1.0 && <0.2
6363
, microlens-platform >=0.4.3 && <0.5

0 commit comments

Comments
 (0)