Skip to content

Commit

Permalink
Prepare 0.2.0.0 release (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitrii Kovanikov authored Sep 20, 2019
1 parent 806c59a commit 731550c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 12 deletions.
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,23 @@
`fcm-client` uses [PVP Versioning][1].
The changelog is available [on GitHub][2].

## Unreleased: 0.2.0.0
## 0.2.0.0 — Sep 18, 2019

* [#3](https://github.com/holmusk/fcm-client/issues/3):
Fix bug serializing the `registration_ids` field.
(by [@bitc](https://github.com/bitc))
* [#6](https://github.com/holmusk/fcm-client/pull/6):
Add support for the `android_channel_id` field.
(by [@bitc](https://github.com/bitc))
* [#7](https://github.com/holmusk/fcm-client/issues/7):
Support latest 3 major GHC versions (on CI as well).
(by [@chshersh](https://github.com/chshersh))
* [#4](https://github.com/holmusk/fcm-client/pull/4):
Add support for GHC-8.2.2.
(by [@bitc](https://github.com/bits))
(by [@bitc](https://github.com/bitc))
* [#2](https://github.com/Holmusk/fcm-client/pull/2):
Updated dependencies, code cleanup.
(by [@andreyk0](https://github.com/andreyk0))

[1]: https://pvp.haskell.org
[2]: https://github.com/holmusk/fcm-client/releases
17 changes: 7 additions & 10 deletions fcm-client.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ cabal-version: 2.4
name: fcm-client
version: 0.2.0.0
synopsis: Admin API for Firebase Cloud Messaging
description: Please see README.md for more details.
description: This package provides data type model and functions to call FCM endpoints.
homepage: https://github.com/holmusk/fcm-client#readme
license: BSD-3-Clause
license-file: LICENSE
author: Andrey Kartashov, Holmusk
maintainer: Holmusk <tech@holmusk.com>
copyright: 2016-2018 Andrey Kartashov, 2018-2019 Holmusk
category: Library, FCM
category: Library, JSON, FCM
build-type: Simple
extra-doc-files: README.md
CHANGELOG.md
Expand All @@ -22,8 +22,9 @@ source-repository head
location: https://github.com/holmusk/fcm-client

common common-options
build-depends: base >= 4.10.1.0 && < 4.14
build-depends: base >= 4.10.1.0 && < 4.13

default-language: Haskell2010
ghc-options: -Wall
-Wincomplete-uni-patterns
-Wincomplete-record-updates
Expand All @@ -32,8 +33,6 @@ common common-options
-Wredundant-constraints
-fhide-source-paths

default-language: Haskell2010

library
import: common-options
hs-source-dirs: src
Expand All @@ -56,7 +55,6 @@ library

executable fcm-client
import: common-options

hs-source-dirs: cli
main-is: Main.hs
other-modules: CliArgs
Expand All @@ -82,12 +80,12 @@ executable fcm-client
default-language: Haskell2010

test-suite test
import: common-options
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs

build-depends: base >= 4.9 && < 5.0
, aeson
build-depends: aeson
, containers
, data-default-class
, fcm-client
Expand All @@ -99,5 +97,4 @@ test-suite test
, test-framework-quickcheck2
, text

default-language: Haskell2010
ghc-options: -Wall -fwarn-tabs -fno-warn-orphans -fno-warn-missing-signatures
ghc-options: -fno-warn-orphans -fno-warn-missing-signatures

0 comments on commit 731550c

Please sign in to comment.