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

Release 0.0.1.4 #22

Merged
merged 1 commit into from
Oct 20, 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
32 changes: 26 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,30 +3,50 @@
`co-log-polysemy` uses [PVP Versioning][1].
The changelog is available [on GitHub][2].

## 0.0.1.4 — Oct 20, 2023

## 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)
* GA(deps): Bump actions/cache from 2 to 3 by @dependabot in [#10](https://github.com/co-log/co-log-polysemy/pull/10)
* GA(deps): Bump haskell/actions from 1 to 2 by @dependabot in [#12](https://github.com/co-log/co-log-polysemy/pull/12)
* Support GHC 9.2. by @alaendle in [#14](https://github.com/co-log/co-log-polysemy/pull/14)
* GA(deps): Bump actions/checkout from 3 to 4 by @dependabot in [#19](https://github.com/co-log/co-log-polysemy/pull/19)
* GHC 9.6 by @alaendle in [#17](https://github.com/co-log/co-log-polysemy/pull/17)
* 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
* @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)

**Full Changelog**: https://github.com/co-log/co-log-polysemy/compare/v0.0.1.3...v0.0.1.4
## 0.0.1.3 — Nov 2, 2021

* [#223](https://github.com/kowainik/co-log/pulls/223):
* [#223](https://github.com/co-log/co-log/pulls/223):
Support GHC-9.0.1.
* Allow `polysemy-1.6.0.0`.
* Bump up lower bound for `co-log-core` to `0.3.0.0`.

## 0.0.1.2 — Apr 18, 2020

* [#186](https://github.com/kowainik/co-log/issues/186):
* [#186](https://github.com/co-log/co-log/issues/186):
Support GHC-8.10.1.

## 0.0.1.1 — Feb 17, 2020

* [#181](https://github.com/kowainik/co-log/issues/181):
* [#181](https://github.com/co-log/co-log/issues/181):
Bump up `polysemy` to `1.3.0.0`.
(by [@chshersh](https://github.com/chshersh))

## 0.0.1.0 — Jan 19, 2020

* [#121](https://github.com/kowainik/co-log/issues/121):
* [#121](https://github.com/co-log/co-log/issues/121):
Add `LogAction` and interpreter that works directly with the `Sem` monad.
(by [@chshersh](https://github.com/chshersh))
* [#148](https://github.com/kowainik/co-log/issues/148):
* [#148](https://github.com/co-log/co-log/issues/148):
Support GHC-8.8.2.
(by [@chshersh](https://github.com/chshersh))
* Bump up `polysemy` to the latest version.
Expand All @@ -37,4 +57,4 @@ The changelog is available [on GitHub][2].
* Initially created.

[1]: https://pvp.haskell.org
[2]: https://github.com/kowainik/co-log/releases
[2]: https://github.com/co-log/co-log/releases
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[![GitHub CI](https://github.com/co-log/co-log-polysemy/workflows/CI/badge.svg)](https://github.com/co-log/co-log-polysemy/actions)
[![Hackage][hk-img-ps]][hk-ps]
[![MPL-2.0 license](https://img.shields.io/badge/license-MPL--2.0-blue.svg)](https://github.com/kowainik/co-log/blob/main/LICENSE)
[![MPL-2.0 license](https://img.shields.io/badge/license-MPL--2.0-blue.svg)](https://github.com/co-log/co-log/blob/main/LICENSE)

`co-log-polysemy` package is a implementation of the
[co-log-core](http://hackage.haskell.org/package/co-log-core) logging based on
Expand Down
2 changes: 1 addition & 1 deletion co-log-polysemy.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: co-log-polysemy
version: 0.0.1.3
version: 0.0.1.4
synopsis: Composable Contravariant Comonadic Logging Library
description:
Implementation of the [co-log](http://hackage.haskell.org/package/co-log-core)
Expand Down
2 changes: 1 addition & 1 deletion src/Colog/Polysemy.hs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{- |
Module : Colog.Polysemy
Copyright : (c) 2019-2020 Kowainik
(c) 2021 Co-Log
(c) 2021-2023 Co-Log
SPDX-License-Identifier : MPL-2.0
Maintainer : Co-Log <[email protected]>
Stability : Provisional
Expand Down
2 changes: 1 addition & 1 deletion src/Colog/Polysemy/Effect.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{- |
Module : Colog.Polysemy.Effect
Copyright : (c) 2019-2020 Kowainik
(c) 2021 Co-Log
(c) 2021-2023 Co-Log
SPDX-License-Identifier : MPL-2.0
Maintainer : Co-Log <[email protected]>
Stability : Provisional
Expand Down
Loading