Skip to content

Commit dc514a0

Browse files
authored
build: Upgrading version from 1.0.0 to 1.1.0 (#77)
1 parent c93cf12 commit dc514a0

File tree

14 files changed

+54
-16
lines changed

14 files changed

+54
-16
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
with:
3131
cabal-file: rollbar-client/rollbar-client.cabal
3232
ubuntu-version: latest
33-
macos-version: latest
33+
macos-version: 12
3434
version: 0.1.7.0
3535
build:
3636
name: GHC ${{ matrix.ghc }} on ${{ matrix.os }}

rollbar-cli/ChangeLog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
11
# Changelog for rollbar-cli
22

3+
All notable changes to this project will be documented in this file.
4+
5+
## [1.1.0] - 2024-05-28
6+
7+
### Changed
8+
- Added support for GHC 9.4
9+
310
## Unreleased changes

rollbar-cli/package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: rollbar-cli
2-
version: 1.0.0
2+
version: 1.1.0
33
github: "stackbuilders/rollbar-haskell"
44
license: MIT
55
author: "Stack Builders Inc."

rollbar-cli/rollbar-cli.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ cabal-version: 1.12
44
--
55
-- see: https://github.com/sol/hpack
66
--
7-
-- hash: 7c6698b375ec164c76d2431962f34299163ec2755d348dc931999d649f19669e
7+
-- hash: 99c3aa74e5ef6c059b7ebeb837bca8f09c047df2a00b6856c99a919e4ad041ed
88

99
name: rollbar-cli
10-
version: 1.0.0
10+
version: 1.1.0
1111
synopsis: Simple CLI tool to perform commons tasks such as tracking deploys.
1212
description: Please see the README on GitHub at
1313
<https://github.com/stackbuilders/rollbar-haskell/tree/master/rollbar-cli>

rollbar-client/ChangeLog.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Changelog for rollbar-client
22

3-
All notable changes to this project will be documented in this file
3+
All notable changes to this project will be documented in this file.
4+
5+
## [1.1.0] - 2024-05-28
6+
7+
### Changed
8+
- Added fields fingerprint, title, uuid, custom to `Item`
9+
- Added support for GHC 9.4
10+
- Changed `text` dependency upper bound: we now support `text-2.0.X.X`.
411

512
## [1.0.0] - 2022-12-28
613

rollbar-client/package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: rollbar-client
2-
version: 1.0.0
2+
version: 1.1.0
33
github: "stackbuilders/rollbar-haskell"
44
license: MIT
55
author: "Stack Builders Inc."

rollbar-client/rollbar-client.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ cabal-version: 1.12
44
--
55
-- see: https://github.com/sol/hpack
66
--
7-
-- hash: 00c54f5f1b124b9d08c5cbe143b9aef68916a289a7a63068ae10e692a1524f91
7+
-- hash: 372dae78f9159532940f589cb4a58365621fc289aae679dfac95e4b6ba477ed7
88

99
name: rollbar-client
10-
version: 1.0.0
10+
version: 1.1.0
1111
synopsis: Core library to communicate with Rollbar API.
1212
description: Please see the README on GitHub at
1313
<https://github.com/stackbuilders/rollbar-haskell/tree/master/rollbar-client>

rollbar-client/src/Rollbar/Client/Item.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ instance ToJSON Notifier where
375375
defaultNotifier :: Notifier
376376
defaultNotifier = Notifier
377377
{ notifierName = "rollbar-client"
378-
, notifierVersion = "1.0.0"
378+
, notifierVersion = "1.1.0"
379379
}
380380

381381
newtype ItemId = ItemId Text

rollbar-wai/ChangeLog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
11
# Changelog for rollbar-wai
22

3+
All notable changes to this project will be documented in this file.
4+
5+
## [1.1.0] - 2024-05-28
6+
7+
### Changed
8+
- Added support for GHC 9.4
9+
- Changed `text` dependency upper bound: we now support `text-2.0.X.X`.
10+
311
## Unreleased changes

rollbar-wai/package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: rollbar-wai
2-
version: 1.0.0
2+
version: 1.1.0
33
github: "stackbuilders/rollbar-haskell"
44
license: MIT
55
author: "Stack Builders Inc."

0 commit comments

Comments
 (0)