Skip to content

Commit 94901a1

Browse files
committed
Bump versions & update changelogs
1 parent be9ce9c commit 94901a1

File tree

14 files changed

+27
-19
lines changed

14 files changed

+27
-19
lines changed

experimental/icu/icu.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: icu
3-
version: 0.1.0
3+
version: 0.2.0
44
synopsis: ICU binding
55
description:
66
ICU binding to ICU for characters names and aliases (internal library).

experimental/unicode-data-text/unicode-data-text.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: unicode-data-text
3-
version: 0.1.0
3+
version: 0.2.0
44
synopsis: Unicode features for “text” package
55
description:
66
@unicode-data-text@ provides Unicode features from
@@ -68,7 +68,7 @@ library
6868
build-depends:
6969
base >= 4.7 && < 4.21,
7070
text >= 1.2.4 && < 2.2,
71-
unicode-data >= 0.3 && < 0.5
71+
unicode-data >= 0.5 && < 0.6
7272

7373
test-suite test
7474
import: default-extensions, compile-options
@@ -82,7 +82,7 @@ test-suite test
8282
base >= 4.7 && < 4.21,
8383
hspec >= 2.0 && < 2.12,
8484
text >= 1.2.4 && < 2.2,
85-
unicode-data >= 0.3 && < 0.5,
85+
unicode-data >= 0.5 && < 0.6,
8686
unicode-data-text
8787
build-tool-depends:
8888
hspec-discover:hspec-discover >= 2.0 && < 2.12
@@ -98,7 +98,7 @@ benchmark bench
9898
tasty-bench >= 0.2.5 && < 0.4,
9999
tasty >= 1.4.1 && < 1.6,
100100
text >= 1.2.4 && < 2.2,
101-
unicode-data >= 0.3 && < 0.5,
101+
unicode-data >= 0.5 && < 0.6,
102102
unicode-data-text
103103
-- [NOTE] Recommendation of tasty-bench to reduce garbage collection noisiness
104104
ghc-options: -O2 -fdicts-strict -rtsopts -with-rtsopts=-A32m

ucd2haskell/exe/UCD2Haskell/Generator/Scripts.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ generateModules version indir outdir patterns = do
4040
version
4141
outdir
4242
"Unicode.Internal.Char.Scripts.Version"
43-
"0.2.1"
43+
"0.3.0"

ucd2haskell/exe/UCD2Haskell/Generator/Security.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,4 @@ generateModules version indir outdir patterns = do
6060
version
6161
outdir
6262
"Unicode.Internal.Char.Security.Version"
63-
"0.2.1"
63+
"0.3.0"

unicode-data-names/Changelog.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
# Changelog
22

3-
## 0.3.0 TBD
3+
## 0.3.0 (July 2024)
44

55
- Improve performance.
66
- Added opional support for `ByteString` API.
77
Use the package flag `has-bytestring` to enable it.
88
- Added opional support for `Text` API.
99
Use the package flag `has-text` to enable it.
1010
- Add `unicodeVersion` to `Unicode.Char.General.Names`.
11+
- Fix the inlining of `Addr#` literals and reduce their size. This results in
12+
a sensible decrease of the executable size.
1113

1214
## 0.2.0 (September 2022)
1315

unicode-data-names/unicode-data-names.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ test-suite test
130130
build-depends:
131131
base >= 4.7 && < 4.21
132132
, hspec >= 2.0 && < 2.12
133-
, unicode-data >= 0.4 && < 0.5
133+
, unicode-data >= 0.5 && < 0.6
134134
, unicode-data-names
135135
if flag(has-text)
136136
cpp-options: -DHAS_TEXT
@@ -175,7 +175,7 @@ benchmark bench
175175
deepseq >= 1.1 && < 1.6,
176176
tasty-bench >= 0.2.5 && < 0.4,
177177
tasty >= 1.4.1 && < 1.6,
178-
unicode-data >= 0.4 && < 0.5,
178+
unicode-data >= 0.5 && < 0.6,
179179
unicode-data-names
180180
if flag(has-text)
181181
cpp-options: -DHAS_TEXT

unicode-data-scripts/Changelog.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# Changelog
22

3-
## 0.2.1 TBD
3+
## 0.3.0 (July 2024)
44

55
- Add `unicodeVersion` and `scriptShortName` to `Unicode.Char.General.Scripts`.
6+
- Fix the inlining of `Addr#` literals and reduce their size. This results in
7+
a sensible decrease of the executable size.
68
- Remove `unicode-data` dependency.
79

810
## 0.2.0.1 (December 2022)

unicode-data-scripts/lib/Unicode/Internal/Char/Scripts/Version.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ import Data.Version (Version, makeVersion)
1515
-- | Version of the Unicode standard used by this package:
1616
-- [15.0.0](https://www.unicode.org/versions/Unicode15.0.0/).
1717
--
18-
-- @since 0.2.1
18+
-- @since 0.3.0
1919
unicodeVersion :: Version
2020
unicodeVersion = makeVersion [15,0,0]

unicode-data-scripts/unicode-data-scripts.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: unicode-data-scripts
3-
version: 0.2.1
3+
version: 0.3.0
44
synopsis: Unicode characters scripts
55
description:
66
@unicode-data-scripts@ provides Haskell APIs to access the Unicode

unicode-data-security/Changelog.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# Changelog
22

3-
## 0.2.1 TBD
3+
## 0.3.0 (July 2024)
44

55
- Changed the type of `confusablePrototype` and `intentionalConfusables` from
66
`Char -> Maybe String` to `Char -> String`.
77
- Add `unicodeVersion` to `Unicode.Char.Identifiers.Security`.
8+
- Fix the inlining of `Addr#` literals and reduce their size. This results in
9+
a sensible decrease of the executable size.
810

911
## 0.2.0 (September 2022)
1012

0 commit comments

Comments
 (0)