co-log-polysemy 0.0.1.4 → 0.0.1.5
raw patch · 4 files changed
+20/−10 lines, 4 filesdep ~basePVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: base
API changes (from Hackage documentation)
- Colog.Polysemy.Effect: runLogAction :: forall m msg r a. Member (Embed m) r => LogAction m msg -> Sem (Log msg : r) a -> Sem r a
+ Colog.Polysemy.Effect: runLogAction :: forall m msg r a. Member (Embed m) r => LogAction m msg -> Sem (Log msg ': r) a -> Sem r a
- Colog.Polysemy.Effect: runLogActionSem :: forall msg r a. LogActionSem r msg -> Sem (Log msg : r) a -> Sem r a
+ Colog.Polysemy.Effect: runLogActionSem :: forall msg r a. LogActionSem r msg -> Sem (Log msg ': r) a -> Sem r a
- Colog.Polysemy.Effect: runLogAsOutput :: forall msg r a. Member (Output msg) r => Sem (Log msg : r) a -> Sem r a
+ Colog.Polysemy.Effect: runLogAsOutput :: forall msg r a. Member (Output msg) r => Sem (Log msg ': r) a -> Sem r a
- Colog.Polysemy.Effect: runLogAsTrace :: forall r a. Member Trace r => Sem (Log String : r) a -> Sem r a
+ Colog.Polysemy.Effect: runLogAsTrace :: forall r a. Member Trace r => Sem (Log String ': r) a -> Sem r a
- Colog.Polysemy.Effect: runOutputAsLog :: forall msg r a. Member (Log msg) r => Sem (Output msg : r) a -> Sem r a
+ Colog.Polysemy.Effect: runOutputAsLog :: forall msg r a. Member (Log msg) r => Sem (Output msg ': r) a -> Sem r a
- Colog.Polysemy.Effect: runTraceAsLog :: forall r a. Member (Log String) r => Sem (Trace : r) a -> Sem r a
+ Colog.Polysemy.Effect: runTraceAsLog :: forall r a. Member (Log String) r => Sem (Trace ': r) a -> Sem r a
Files
- CHANGELOG.md +11/−2
- co-log-polysemy.cabal +7/−6
- src/Colog/Polysemy.hs +1/−1
- src/Colog/Polysemy/Effect.hs +1/−1
CHANGELOG.md view
@@ -3,9 +3,18 @@ `co-log-polysemy` uses [PVP Versioning][1]. The changelog is available [on GitHub][2]. +## 0.0.1.5 - Jun 8, 2024++### What's Changed+* GA(deps): Bump actions/cache from 3 to 4 by @dependabot in https://github.com/co-log/co-log-polysemy/pull/23+* Support ghc-9.10. by @alaendle in https://github.com/co-log/co-log-polysemy/pull/24+++**Full Changelog**: https://github.com/co-log/co-log-polysemy/compare/v0.0.1.4...v0.0.1.5+ ## 0.0.1.4 — Oct 20, 2023 -## What's Changed+### What's Changed * update README.md by @udaycruise2903 in [#6](https://github.com/co-log/co-log-polysemy/pull/6) * modified 'build-depends' section in README.md by @udaycruise2903 in [#7](https://github.com/co-log/co-log-polysemy/pull/7) * GA(deps): Bump actions/checkout from 2 to 3 by @dependabot in [#9](https://github.com/co-log/co-log-polysemy/pull/9)@@ -17,7 +26,7 @@ * Support ghc-9.8 by @alaendle in [#20](https://github.com/co-log/co-log-polysemy/pull/20) * Publish to hackage directly from GitHub by @alaendle in [#21](https://github.com/co-log/co-log-polysemy/pull/21) -## New Contributors+### New Contributors * @udaycruise2903 made their first contribution in [#6](https://github.com/co-log/co-log-polysemy/pull/6) * @dependabot made their first contribution in [#9](https://github.com/co-log/co-log-polysemy/pull/9) * @alaendle made their first contribution in [#14](https://github.com/co-log/co-log-polysemy/pull/14)
co-log-polysemy.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: co-log-polysemy-version: 0.0.1.4+version: 0.0.1.5 synopsis: Composable Contravariant Comonadic Logging Library description: Implementation of the [co-log](http://hackage.haskell.org/package/co-log-core)@@ -21,7 +21,7 @@ license-file: LICENSE author: Dmitrii Kovanikov maintainer: Kowainik <xrom.xkov@gmail.com>-copyright: 2019-2020 Kowainik, 2021-2023 Co-Log+copyright: 2019-2020 Kowainik, 2021-2024 Co-Log category: Logging, Contravariant, Comonad, Effects build-type: Simple stability: provisional@@ -33,16 +33,17 @@ GHC == 8.10.7 GHC == 9.0.2 GHC == 9.2.8- GHC == 9.4.7- GHC == 9.6.3- GHC == 9.8.1+ GHC == 9.4.8+ GHC == 9.6.5+ GHC == 9.8.2+ GHC == 9.10.1 source-repository head type: git location: https://github.com/co-log/co-log-polysemy.git common common-options- build-depends: base >= 4.11 && < 4.20+ build-depends: base >= 4.11 && < 4.21 ghc-options: -O2 -Wall
src/Colog/Polysemy.hs view
@@ -1,7 +1,7 @@ {- | Module : Colog.Polysemy Copyright : (c) 2019-2020 Kowainik- (c) 2021-2023 Co-Log+ (c) 2021-2024 Co-Log SPDX-License-Identifier : MPL-2.0 Maintainer : Co-Log <xrom.xkov@gmail.com> Stability : Provisional
src/Colog/Polysemy/Effect.hs view
@@ -3,7 +3,7 @@ {- | Module : Colog.Polysemy.Effect Copyright : (c) 2019-2020 Kowainik- (c) 2021-2023 Co-Log+ (c) 2021-2024 Co-Log SPDX-License-Identifier : MPL-2.0 Maintainer : Co-Log <xrom.xkov@gmail.com> Stability : Provisional