-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Update aeson upper version to latest (#42)
- Loading branch information
1 parent
079c6b5
commit 4ed679e
Showing
14 changed files
with
83 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
name: rollbar-cli | ||
version: 0.1.0 | ||
version: 1.0.0 | ||
github: "stackbuilders/rollbar-haskell" | ||
license: MIT | ||
author: "Stack Builders Inc." | ||
maintainer: "Sebastián Estrella <[email protected]>" | ||
copyright: "2020 Stack Builders Inc." | ||
tested-with: GHC ==8.6.5, GHC ==8.8.4, GHC ==8.10.2 | ||
tested-with: GHC ==8.8.4, GHC ==8.10.2 | ||
|
||
extra-source-files: | ||
- README.md | ||
|
@@ -22,7 +22,7 @@ ghc-options: | |
- -Wall | ||
|
||
dependencies: | ||
- base >= 4.12 && < 5 | ||
- base >= 4.13 && < 5 | ||
|
||
_exe-ghc-options: &exe-ghc-options | ||
- -threaded | ||
|
@@ -33,7 +33,7 @@ library: | |
source-dirs: src | ||
dependencies: | ||
- optparse-applicative >= 0.14 && < 1 | ||
- rollbar-client >= 0.1 && < 1 | ||
- rollbar-client >= 1.0 && < 2 | ||
|
||
executables: | ||
rollbar: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ cabal-version: 1.12 | |
-- hash: 550be30f2b0d05cb1448d3ac2048f42b360608d96c8bd70aa2815abe73fb9c08 | ||
|
||
name: rollbar-cli | ||
version: 0.1.0 | ||
version: 1.0.0 | ||
synopsis: Simple CLI tool to perform commons tasks such as tracking deploys. | ||
description: Please see the README on GitHub at | ||
<https://github.com/stackbuilders/rollbar-haskell/tree/master/rollbar-cli> | ||
|
@@ -18,7 +18,7 @@ maintainer: Sebastián Estrella <[email protected]> | |
copyright: 2020 Stack Builders Inc. | ||
license: MIT | ||
license-file: LICENSE | ||
tested-with: GHC ==8.6.5, GHC ==8.8.4, GHC ==8.10.2 | ||
tested-with: GHC ==8.8.4, GHC ==8.10.2 | ||
build-type: Simple | ||
extra-source-files: | ||
README.md | ||
|
@@ -37,9 +37,9 @@ library | |
src | ||
ghc-options: -Wall | ||
build-depends: | ||
base >=4.12 && <5 | ||
base >=4.13 && <5 | ||
, optparse-applicative >=0.14 && <1 | ||
, rollbar-client >=0.1 && <1 | ||
, rollbar-client >=1 && <2 | ||
default-language: Haskell2010 | ||
|
||
executable rollbar | ||
|
@@ -50,7 +50,7 @@ executable rollbar | |
app | ||
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N | ||
build-depends: | ||
base >=4.12 && <5 | ||
base >=4.13 && <5 | ||
, rollbar-cli | ||
, rollbar-client | ||
default-language: Haskell2010 | ||
|
@@ -64,6 +64,6 @@ test-suite spec | |
test | ||
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N | ||
build-depends: | ||
base >=4.12 && <5 | ||
base >=4.13 && <5 | ||
, rollbar-cli | ||
default-language: Haskell2010 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
# Changelog for rollbar-client | ||
|
||
## Unreleased changes | ||
All notable changes to this project will be documented in this file | ||
|
||
## [1.0.0] - 2022-12-28 | ||
|
||
### Changed | ||
|
||
- Updated dependency aeson version. | ||
- Updated base version | ||
|
||
### Removed | ||
|
||
- Support for GHC 8.6.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
name: rollbar-client | ||
version: 0.1.0 | ||
version: 1.0.0 | ||
github: "stackbuilders/rollbar-haskell" | ||
license: MIT | ||
author: "Stack Builders Inc." | ||
maintainer: "Sebastián Estrella <[email protected]>" | ||
copyright: "2020 Stack Builders Inc." | ||
tested-with: GHC ==8.6.5, GHC ==8.8.4, GHC ==8.10.2 | ||
tested-with: GHC ==8.8.4, GHC ==8.10.2 | ||
|
||
extra-source-files: | ||
- README.md | ||
|
@@ -22,7 +22,7 @@ ghc-options: | |
- -Wall | ||
|
||
dependencies: | ||
- base >= 4.12 && < 5 | ||
- base >= 4.13 && < 5 | ||
|
||
flags: | ||
example: | ||
|
@@ -38,7 +38,7 @@ _exe-ghc-options: &exe-ghc-options | |
library: | ||
source-dirs: src | ||
dependencies: | ||
- aeson >= 1.4 && < 2 | ||
- aeson >= 2.0 && <3 | ||
- bytestring >= 0.10 && < 1 | ||
- directory >= 1.3 && < 2 | ||
- exceptions >= 0.10 && < 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ cabal-version: 1.12 | |
-- hash: b3e835bcc225cb66a06268126c5a04b48d06fd90b55677e26219ecfe207068d3 | ||
|
||
name: rollbar-client | ||
version: 0.1.0 | ||
version: 1.0.0 | ||
synopsis: Core library to communicate with Rollbar API. | ||
description: Please see the README on GitHub at | ||
<https://github.com/stackbuilders/rollbar-haskell/tree/master/rollbar-client> | ||
|
@@ -18,7 +18,7 @@ maintainer: Sebastián Estrella <[email protected]> | |
copyright: 2020 Stack Builders Inc. | ||
license: MIT | ||
license-file: LICENSE | ||
tested-with: GHC ==8.6.5, GHC ==8.8.4, GHC ==8.10.2 | ||
tested-with: GHC ==8.8.4, GHC ==8.10.2 | ||
build-type: Simple | ||
extra-source-files: | ||
README.md | ||
|
@@ -47,8 +47,8 @@ library | |
src | ||
ghc-options: -Wall | ||
build-depends: | ||
aeson >=1.4 && <2 | ||
, base >=4.12 && <5 | ||
aeson >=2.0 && <3 | ||
, base >=4.13 && <5 | ||
, bytestring >=0.10 && <1 | ||
, directory >=1.3 && <2 | ||
, exceptions >=0.10 && <1 | ||
|
@@ -68,7 +68,7 @@ executable client-example | |
example | ||
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N | ||
build-depends: | ||
base >=4.12 && <5 | ||
base >=4.13 && <5 | ||
, rollbar-client | ||
, text | ||
if flag(example) | ||
|
@@ -90,7 +90,7 @@ test-suite spec | |
hspec-discover:hspec-discover >=2.7 && <3 | ||
build-depends: | ||
aeson | ||
, base >=4.12 && <5 | ||
, base >=4.13 && <5 | ||
, hspec >=2.7 && <3 | ||
, mtl | ||
, rollbar-client | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
name: rollbar-wai | ||
version: 0.1.0 | ||
version: 1.0.0 | ||
github: "stackbuilders/rollbar-haskell" | ||
license: MIT | ||
author: "Stack Builders Inc." | ||
maintainer: "Sebastián Estrella <[email protected]>" | ||
copyright: "2020 Stack Builders Inc." | ||
tested-with: GHC ==8.6.5, GHC ==8.8.4, GHC ==8.10.2 | ||
tested-with: GHC ==8.8.4, GHC ==8.10.2 | ||
|
||
extra-source-files: | ||
- README.md | ||
|
@@ -24,7 +24,7 @@ ghc-options: | |
- -Wall | ||
|
||
dependencies: | ||
- base >= 4.12 && < 5 | ||
- base >= 4.13 && < 5 | ||
|
||
flags: | ||
example: | ||
|
@@ -40,11 +40,11 @@ _exe-ghc-options: &exe-ghc-options | |
library: | ||
source-dirs: src | ||
dependencies: | ||
- aeson >= 1.4 && < 2 | ||
- aeson >= 2.0 && <3 | ||
- bytestring >= 0.10 && < 1 | ||
- case-insensitive >= 1.2 && < 2 | ||
- http-types >= 0.12 && < 1 | ||
- rollbar-client >= 0.1 && < 1 | ||
- rollbar-client >= 1.0 && < 2 | ||
- text >= 1.2 && < 2 | ||
- unordered-containers >= 0.2 && < 1 | ||
- wai >= 3.2 && < 4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ cabal-version: 1.12 | |
-- hash: 36882de3e15bbc25fa5b54c1ee7d9dbe96436e87f4502b002a3a388508677741 | ||
|
||
name: rollbar-wai | ||
version: 0.1.0 | ||
version: 1.0.0 | ||
synopsis: Provides error reporting capabilities to WAI based applications through Rollbar API. | ||
|
||
description: Please see the README on GitHub at | ||
|
@@ -19,7 +19,7 @@ maintainer: Sebastián Estrella <[email protected]> | |
copyright: 2020 Stack Builders Inc. | ||
license: MIT | ||
license-file: LICENSE | ||
tested-with: GHC ==8.6.5, GHC ==8.8.4, GHC ==8.10.2 | ||
tested-with: GHC ==8.8.4, GHC ==8.10.2 | ||
build-type: Simple | ||
extra-source-files: | ||
README.md | ||
|
@@ -43,12 +43,12 @@ library | |
src | ||
ghc-options: -Wall | ||
build-depends: | ||
aeson >=1.4 && <2 | ||
, base >=4.12 && <5 | ||
aeson >=2.0 && <3 | ||
, base >=4.13 && <5 | ||
, bytestring >=0.10 && <1 | ||
, case-insensitive >=1.2 && <2 | ||
, http-types >=0.12 && <1 | ||
, rollbar-client >=0.1 && <1 | ||
, rollbar-client >=1.0 && <2 | ||
, text >=1.2 && <2 | ||
, unordered-containers >=0.2 && <1 | ||
, wai >=3.2 && <4 | ||
|
@@ -63,7 +63,7 @@ executable wai-example | |
example | ||
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N | ||
build-depends: | ||
base >=4.12 && <5 | ||
base >=4.13 && <5 | ||
, rollbar-client | ||
, rollbar-wai | ||
, wai | ||
|
@@ -87,7 +87,7 @@ test-suite spec | |
hspec-discover:hspec-discover >=2.7 && <3 | ||
build-depends: | ||
aeson | ||
, base >=4.12 && <5 | ||
, base >=4.13 && <5 | ||
, hspec >=2.7 && <3 | ||
, http-types | ||
, mtl >=2.2 && <3 | ||
|
Oops, something went wrong.