Skip to content

Commit 9227fa0

Browse files
committed
refactor: Widen dependency bounds
1 parent 1c78c26 commit 9227fa0

5 files changed

Lines changed: 19 additions & 15 deletions

File tree

.github/readme/bottom.jpg

72.4 KB
Loading

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.2.1.0 (2026-01-12)
2+
3+
Bumped dependencies.
4+
15
# 0.2.0.0 (2021-04-02)
26

37
Changed the error message type of `decode'` from `Text` to `String` to be more

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@
175175

176176
END OF TERMS AND CONDITIONS
177177

178-
Copyright 2021 Leo Zhang
178+
Copyright 2026 Eliza Zhang
179179

180180
Licensed under the Apache License, Version 2.0 (the "License");
181181
you may not use this file except in compliance with the License.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
Based off of the hilarious [bottom-rs](https://github.com/bottom-software-foundation/bottom-rs), built to the [Bottom spec](https://github.com/bottom-software-foundation/spec).
88

9-
![,,,,,,,,,](https://cdn.discordapp.com/attachments/644479051918082050/799905088541425664/bottom.jpg)
9+
![Meme: What the fuck is 🥺? Use your words, I don't speak bottom.](/.github/readme/bottom.jpg)
1010

1111
## Using the CLI
1212

bottom.cabal

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
cabal-version: 3.0
22
name: bottom
3-
version: 0.2.0.0
3+
version: 0.2.1.0
44
synopsis: Encoding and decoding for the Bottom spec.
55
description:
66
Encoding and decoding for the [Bottom spec](https://github.com/bottom-software-foundation/spec).
77

88
license: Apache-2.0
99
license-file: LICENSE
10-
author: Leo Zhang
11-
maintainer: leo@leozhang.me
12-
copyright: 2021 Leo Zhang
10+
author: Eliza Zhang
11+
maintainer: eliza@elizazhang.com
12+
copyright: 2026 Eliza Zhang
1313
category: Codec
1414
build-type: Simple
1515
homepage: https://github.com/bottom-software-foundation/bottom-hs
@@ -26,7 +26,7 @@ source-repository head
2626
location: git://github.com/bottom-software-foundation/bottom-hs.git
2727

2828
common lang
29-
build-depends: base ^>=4.14
29+
build-depends: base >=4.14 && <5
3030
default-language: Haskell2010
3131
ghc-options:
3232
-Wall -Wincomplete-uni-patterns -Wcompat
@@ -35,8 +35,8 @@ common lang
3535

3636
common deps
3737
build-depends:
38-
, bytestring ^>=0.11.1.0
39-
, text ^>=1.2.4.1
38+
, bytestring
39+
, text
4040

4141
library
4242
import: lang
@@ -46,7 +46,7 @@ library
4646
-- cabal-fmt: expand src
4747
exposed-modules: Data.Encoding.Bottom
4848
build-depends:
49-
, deepseq ^>=1.4.4.0
49+
, deepseq
5050
, megaparsec ^>=9.0.1
5151

5252
test-suite tests
@@ -60,8 +60,8 @@ test-suite tests
6060
other-modules:
6161
build-depends:
6262
, bottom
63-
, hspec ^>=2.7.8
64-
, QuickCheck ^>=2.14.2
63+
, hspec >=2.7.8 && <3
64+
, QuickCheck >=2.14.2 && <3
6565

6666
benchmark bench
6767
import: lang
@@ -74,8 +74,8 @@ benchmark bench
7474
other-modules:
7575
build-depends:
7676
, bottom
77-
, criterion ^>=1.5.9.0
78-
, deepseq ^>=1.4.4.0
77+
, criterion >=1.5.9.0 && <2
78+
, deepseq
7979

8080
executable bottom
8181
import: lang
@@ -88,4 +88,4 @@ executable bottom
8888
other-modules:
8989
build-depends:
9090
, bottom
91-
, optparse-applicative ^>=0.16.1.0
91+
, optparse-applicative >=0.16.1.0 && <1

0 commit comments

Comments
 (0)