Skip to content

Commit

Permalink
Bump versions & update changelogs
Browse files Browse the repository at this point in the history
  • Loading branch information
wismill committed Jun 21, 2024
1 parent be9ce9c commit 96fd5e6
Show file tree
Hide file tree
Showing 12 changed files with 25 additions and 17 deletions.
2 changes: 1 addition & 1 deletion experimental/icu/icu.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: icu
version: 0.1.0
version: 0.2.0
synopsis: ICU binding
description:
ICU binding to ICU for characters names and aliases (internal library).
Expand Down
8 changes: 4 additions & 4 deletions experimental/unicode-data-text/unicode-data-text.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: unicode-data-text
version: 0.1.0
version: 0.2.0
synopsis: Unicode features for “text” package
description:
@unicode-data-text@ provides Unicode features from
Expand Down Expand Up @@ -68,7 +68,7 @@ library
build-depends:
base >= 4.7 && < 4.21,
text >= 1.2.4 && < 2.2,
unicode-data >= 0.3 && < 0.5
unicode-data >= 0.5 && < 0.6

test-suite test
import: default-extensions, compile-options
Expand All @@ -82,7 +82,7 @@ test-suite test
base >= 4.7 && < 4.21,
hspec >= 2.0 && < 2.12,
text >= 1.2.4 && < 2.2,
unicode-data >= 0.3 && < 0.5,
unicode-data >= 0.5 && < 0.6,
unicode-data-text
build-tool-depends:
hspec-discover:hspec-discover >= 2.0 && < 2.12
Expand All @@ -98,7 +98,7 @@ benchmark bench
tasty-bench >= 0.2.5 && < 0.4,
tasty >= 1.4.1 && < 1.6,
text >= 1.2.4 && < 2.2,
unicode-data >= 0.3 && < 0.5,
unicode-data >= 0.5 && < 0.6,
unicode-data-text
-- [NOTE] Recommendation of tasty-bench to reduce garbage collection noisiness
ghc-options: -O2 -fdicts-strict -rtsopts -with-rtsopts=-A32m
Expand Down
4 changes: 3 additions & 1 deletion unicode-data-names/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
# Changelog

## 0.3.0 TBD
## 0.3.0 (June 2024)

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

## 0.2.0 (September 2022)

Expand Down
4 changes: 2 additions & 2 deletions unicode-data-names/unicode-data-names.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ test-suite test
build-depends:
base >= 4.7 && < 4.21
, hspec >= 2.0 && < 2.12
, unicode-data >= 0.4 && < 0.5
, unicode-data >= 0.5 && < 0.6
, unicode-data-names
if flag(has-text)
cpp-options: -DHAS_TEXT
Expand Down Expand Up @@ -175,7 +175,7 @@ benchmark bench
deepseq >= 1.1 && < 1.6,
tasty-bench >= 0.2.5 && < 0.4,
tasty >= 1.4.1 && < 1.6,
unicode-data >= 0.4 && < 0.5,
unicode-data >= 0.5 && < 0.6,
unicode-data-names
if flag(has-text)
cpp-options: -DHAS_TEXT
Expand Down
4 changes: 3 additions & 1 deletion unicode-data-scripts/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# Changelog

## 0.2.1 TBD
## 0.3.0 (June 2024)

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

## 0.2.0.1 (December 2022)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ import Data.Version (Version, makeVersion)
-- | Version of the Unicode standard used by this package:
-- [15.0.0](https://www.unicode.org/versions/Unicode15.0.0/).
--
-- @since 0.2.1
-- @since 0.3.0
unicodeVersion :: Version
unicodeVersion = makeVersion [15,0,0]
2 changes: 1 addition & 1 deletion unicode-data-scripts/unicode-data-scripts.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: unicode-data-scripts
version: 0.2.1
version: 0.3.0
synopsis: Unicode characters scripts
description:
@unicode-data-scripts@ provides Haskell APIs to access the Unicode
Expand Down
4 changes: 3 additions & 1 deletion unicode-data-security/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# Changelog

## 0.2.1 TBD
## 0.3.0 (Just 2024)

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

## 0.2.0 (September 2022)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ import Data.Version (Version, makeVersion)
-- | Version of the Unicode standard used by this package:
-- [15.0.0](https://www.unicode.org/versions/Unicode15.0.0/).
--
-- @since 0.2.1
-- @since 0.3.0
unicodeVersion :: Version
unicodeVersion = makeVersion [15,0,0]
4 changes: 2 additions & 2 deletions unicode-data-security/unicode-data-security.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: unicode-data-security
version: 0.2.1
version: 0.3.0
synopsis: Unicode security mechanisms database
description:
@unicode-data-security@ provides Haskell APIs to access the
Expand Down Expand Up @@ -84,7 +84,7 @@ library
hs-source-dirs: lib
build-depends:
base >= 4.7 && < 4.21
, unicode-data >= 0.4 && < 0.5
, unicode-data >= 0.5 && < 0.6
-- Support for raw string literals unpacking is included in base ≥ 4.15
if impl(ghc < 9.0.0)
build-depends:
Expand Down
4 changes: 3 additions & 1 deletion unicode-data/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Changelog

## TBD
## 0.5.0 (June 2024)

- Fix the inlining of `Addr#` literals and reduce their size. This results in
a sensible decrease of the executable size.
- Changed `integerValue` from `Char -> Maybe Int` to `(Integral a) => Char -> Maybe a`.

## 0.4.0.1 (December 2022)
Expand Down
2 changes: 1 addition & 1 deletion unicode-data/unicode-data.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: unicode-data
version: 0.4.0.1
version: 0.5.0
synopsis: Access Unicode Character Database (UCD)
description:
@unicode-data@ provides Haskell APIs to efficiently access the
Expand Down

0 comments on commit 96fd5e6

Please sign in to comment.