Skip to content

Commit f9698d5

Browse files
authored
Merge pull request #29 from NoRedInk/bump-versions
text-2.0.x base-4.16.x template-haskell-2.18.x [QUE-170]
2 parents 4724d72 + a46978c commit f9698d5

28 files changed

+104
-69
lines changed

nri-env-parser/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.1.0.8
2+
3+
- Relax version bounds to encompass `text-2.0.x`, `base-4.16.x` and `template-haskell-2.18.x`
4+
15
# 0.1.0.7
26

37
- Relax version bounds to encompass `prelude-0.6.x`.

nri-env-parser/nri-env-parser.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 1.18
22

3-
-- This file has been generated from package.yaml by hpack version 0.34.4.
3+
-- This file has been generated from package.yaml by hpack version 0.34.5.
44
--
55
-- see: https://github.com/sol/hpack
66

@@ -50,9 +50,9 @@ library
5050
TypeOperators
5151
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wpartial-fields -Wredundant-constraints -Wincomplete-uni-patterns -fplugin=NriPrelude.Plugin
5252
build-depends:
53-
base >=4.12.0.0 && <4.16
53+
base >=4.12.0.0 && <4.17
5454
, modern-uri >=0.3.1.0 && <0.4
5555
, network-uri >=2.6.2.0 && <2.8
5656
, nri-prelude >=0.1.0.0 && <0.7
57-
, text >=1.2.3.1 && <1.3
57+
, text >=1.2.3.1 && <2.1
5858
default-language: Haskell2010

nri-env-parser/package.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ extra-doc-files:
1515
- CHANGELOG.md
1616
library:
1717
dependencies:
18-
- base >= 4.12.0.0 && < 4.16
18+
- base >= 4.12.0.0 && < 4.17
1919
- nri-prelude >= 0.1.0.0 && < 0.7
2020
- modern-uri >= 0.3.1.0 && < 0.4
2121
- network-uri >= 2.6.2.0 && < 2.8
22-
- text >= 1.2.3.1 && < 1.3
22+
- text >= 1.2.3.1 && < 2.1
2323
exposed-modules:
2424
- Environment
2525
source-dirs: src

nri-http/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.1.0.4
2+
3+
- Relax version bounds to encompass `text-2.0.x`, `base-4.16.x` and `template-haskell-2.18.x`
4+
15
# 0.1.0.3
26

37
- Support `aeson-2.0.x` (properly).

nri-http/nri-http.cabal

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 1.12
22

3-
-- This file has been generated from package.yaml by hpack version 0.34.4.
3+
-- This file has been generated from package.yaml by hpack version 0.34.5.
44
--
55
-- see: https://github.com/sol/hpack
66

@@ -55,7 +55,7 @@ library
5555
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wpartial-fields -Wredundant-constraints -Wincomplete-uni-patterns -fplugin=NriPrelude.Plugin
5656
build-depends:
5757
aeson >=1.4.6.0 && <2.1
58-
, base >=4.12.0.0 && <4.16
58+
, base >=4.12.0.0 && <4.17
5959
, bytestring >=0.10.8.2 && <0.12
6060
, conduit >=1.3.0 && <1.4
6161
, http-client >=0.6.0 && <0.8
@@ -66,7 +66,7 @@ library
6666
, nri-observability >=0.1.0.0 && <0.2
6767
, nri-prelude >=0.1.0.0 && <0.7
6868
, safe-exceptions >=0.1.7.0 && <1.3
69-
, text >=1.2.3.1 && <1.3
69+
, text >=1.2.3.1 && <2.1
7070
default-language: Haskell2010
7171

7272
test-suite spec
@@ -99,7 +99,7 @@ test-suite spec
9999
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wpartial-fields -Wredundant-constraints -Wincomplete-uni-patterns -fplugin=NriPrelude.Plugin -fno-warn-type-defaults
100100
build-depends:
101101
aeson >=1.4.6.0 && <2.1
102-
, base >=4.12.0.0 && <4.16
102+
, base >=4.12.0.0 && <4.17
103103
, bytestring >=0.10.8.2 && <0.12
104104
, conduit >=1.3.0 && <1.4
105105
, http-client >=0.6.0 && <0.8
@@ -110,7 +110,7 @@ test-suite spec
110110
, nri-observability >=0.1.0.0 && <0.2
111111
, nri-prelude >=0.1.0.0 && <0.7
112112
, safe-exceptions >=0.1.7.0 && <1.3
113-
, text >=1.2.3.1 && <1.3
113+
, text >=1.2.3.1 && <2.1
114114
, wai >=3.2.0 && <3.3
115115
, warp >=3.3.0 && <3.4
116116
default-language: Haskell2010

nri-http/package.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ extra-source-files:
1515
library:
1616
dependencies:
1717
- aeson >= 1.4.6.0 && < 2.1
18-
- base >= 4.12.0.0 && < 4.16
18+
- base >= 4.12.0.0 && < 4.17
1919
- bytestring >= 0.10.8.2 && < 0.12
2020
- nri-prelude >= 0.1.0.0 && < 0.7
2121
- nri-observability >= 0.1.0.0 && < 0.2
@@ -26,7 +26,7 @@ library:
2626
- mime-types >= 0.1.0.0 && < 0.2
2727
- network-uri >= 2.6.0.0 && < 2.8
2828
- safe-exceptions >= 0.1.7.0 && < 1.3
29-
- text >= 1.2.3.1 && < 1.3
29+
- text >= 1.2.3.1 && < 2.1
3030
exposed-modules:
3131
- Http
3232
- Http.Mock
@@ -35,7 +35,7 @@ tests:
3535
spec:
3636
dependencies:
3737
- aeson >= 1.4.6.0 && < 2.1
38-
- base >= 4.12.0.0 && < 4.16
38+
- base >= 4.12.0.0 && < 4.17
3939
- bytestring >= 0.10.8.2 && < 0.12
4040
- nri-prelude >= 0.1.0.0 && < 0.7
4141
- nri-observability >= 0.1.0.0 && < 0.2
@@ -46,7 +46,7 @@ tests:
4646
- mime-types >= 0.1.0.0 && < 0.2
4747
- network-uri >= 2.6.0.0 && < 2.8
4848
- safe-exceptions >= 0.1.7.0 && < 1.3
49-
- text >= 1.2.3.1 && < 1.3
49+
- text >= 1.2.3.1 && < 2.1
5050
- wai >= 3.2.0 && < 3.3
5151
- warp >= 3.3.0 && < 3.4
5252
main: Main.hs

nri-kafka/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.1.0.3
2+
3+
- Relax version bounds to encompass `text-2.0.x`, `base-4.16.x` and `template-haskell-2.18.x`
4+
15
# 0.1.0.2
26

37
- Support `time-1.x`.

nri-kafka/nri-kafka.cabal

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 1.12
22

3-
-- This file has been generated from package.yaml by hpack version 0.34.4.
3+
-- This file has been generated from package.yaml by hpack version 0.34.5.
44
--
55
-- see: https://github.com/sol/hpack
66

@@ -65,7 +65,7 @@ library
6565
build-depends:
6666
aeson >=1.4.6.0 && <2.1
6767
, async >=2.2.2 && <2.3
68-
, base >=4.12.0.0 && <4.16
68+
, base >=4.12.0.0 && <4.17
6969
, bytestring >=0.10.8.2 && <0.12
7070
, conduit >=1.3.0 && <1.4
7171
, containers >=0.6.0.1 && <0.7
@@ -75,7 +75,7 @@ library
7575
, nri-prelude >=0.1.0.0 && <0.7
7676
, safe-exceptions >=0.1.7.0 && <1.3
7777
, stm >=2.4 && <2.6
78-
, text >=1.2.3.1 && <1.3
78+
, text >=1.2.3.1 && <2.1
7979
, time >=1.8.0.2 && <2
8080
, unix >=2.7.2.2 && <2.8.0.0
8181
, uuid >=1.3.0 && <1.4
@@ -124,7 +124,7 @@ test-suite tests
124124
build-depends:
125125
aeson >=1.4.6.0 && <2.1
126126
, async >=2.2.2 && <2.3
127-
, base >=4.12.0.0 && <4.16
127+
, base >=4.12.0.0 && <4.17
128128
, bytestring >=0.10.8.2 && <0.12
129129
, conduit >=1.3.0 && <1.4
130130
, containers >=0.6.0.1 && <0.7
@@ -134,7 +134,7 @@ test-suite tests
134134
, nri-prelude >=0.1.0.0 && <0.7
135135
, safe-exceptions >=0.1.7.0 && <1.3
136136
, stm >=2.4 && <2.6
137-
, text >=1.2.3.1 && <1.3
137+
, text >=1.2.3.1 && <2.1
138138
, time >=1.8.0.2 && <2
139139
, unix >=2.7.2.2 && <2.8.0.0
140140
, uuid >=1.3.0 && <1.4

nri-kafka/package.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ extra-source-files:
1616
dependencies:
1717
- aeson >= 1.4.6.0 && < 2.1
1818
- async >=2.2.2 && <2.3
19-
- base >= 4.12.0.0 && < 4.16
19+
- base >= 4.12.0.0 && < 4.17
2020
- bytestring >= 0.10.8.2 && < 0.12
2121
- conduit >= 1.3.0 && < 1.4
2222
- containers >= 0.6.0.1 && < 0.7
@@ -26,7 +26,7 @@ dependencies:
2626
- nri-prelude >= 0.1.0.0 && < 0.7
2727
- safe-exceptions >= 0.1.7.0 && < 1.3
2828
- stm >= 2.4 && < 2.6
29-
- text >= 1.2.3.1 && < 1.3
29+
- text >= 1.2.3.1 && < 2.1
3030
- time >= 1.8.0.2 && < 2
3131
- unix >= 2.7.2.2 && < 2.8.0.0
3232
- uuid >=1.3.0 && < 1.4

nri-log-explorer/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# Unreleased
1+
# 0.1.1.2
2+
3+
- Relax version bounds to encompass `text-2.0.x`, `base-4.16.x` and `template-haskell-2.18.x`
24

35
### Enhancements:
46

0 commit comments

Comments
 (0)