Skip to content

Commit

Permalink
Merge 097b9fb into e1dcb66
Browse files Browse the repository at this point in the history
  • Loading branch information
adithyaov committed Aug 5, 2020
2 parents e1dcb66 + 097b9fb commit 42b4d19
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 9 deletions.
3 changes: 3 additions & 0 deletions .packcheck.ignore
@@ -0,0 +1,3 @@
.packcheck.ignore
cabal.project.coveralls
unicode-data/ucdxml/ucd.all.flat.zip
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -60,7 +60,7 @@ env:
# If you have not committed packcheck.sh in your repo at PACKCHECK_LOCAL_PATH
# then it is automatically pulled from this URL.
- PACKCHECK_GITHUB_URL="https://raw.githubusercontent.com/composewell/packcheck"
- PACKCHECK_GITHUB_COMMIT="b3e207e1286205c9285089b8c72cc1625816adfe"
- PACKCHECK_GITHUB_COMMIT="f17ef1f60cb926230a082c4a3089c14c35db0e1f"

notifications:
email:
Expand Down
2 changes: 1 addition & 1 deletion Changelog.md
@@ -1,4 +1,4 @@
## Unreleased
## 0.3.7

* Significant performance improvements
* Update to Unicode version 13.0.0
Expand Down
2 changes: 1 addition & 1 deletion Data/Unicode/Types.hs
Expand Up @@ -25,7 +25,7 @@ import Data.Typeable (Typeable)
-- Normalization transforms Unicode text into an equivalent
-- composed or decomposed form, allowing for easier sorting and
-- searching of text. Standard normalization forms are described in
-- <http://www.unicode.org/unicode/reports/tr15/>,
-- <https://unicode.org/reports/tr15/>,
-- Unicode Standard Annex #15: Unicode Normalization Forms.
--
-- Characters with accents or other adornments can be encoded in
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -5,7 +5,7 @@
[![Windows Build status](https://ci.appveyor.com/api/projects/status/5wov8m1m0asvbv32?svg=true)](https://ci.appveyor.com/project/harendra-kumar/unicode-transforms)
[![Coverage Status](https://coveralls.io/repos/composewell/unicode-transforms/badge.svg?branch=master&service=github)](https://coveralls.io/github/composewell/unicode-transforms?branch=master)

Fast Unicode 12.1.0 normalization in Haskell (NFC, NFKC, NFD, NFKD).
Fast Unicode 13.0.0 normalization in Haskell (NFC, NFKC, NFD, NFKD).

## What is normalization?

Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Expand Up @@ -59,7 +59,7 @@ environment:
# If you have not committed packcheck.sh in your repo at PACKCHECK_LOCAL_PATH
# then it is automatically pulled from this URL.
PACKCHECK_GITHUB_URL: "https://raw.githubusercontent.com/composewell/packcheck"
PACKCHECK_GITHUB_COMMIT: "b3e207e1286205c9285089b8c72cc1625816adfe"
PACKCHECK_GITHUB_COMMIT: "f17ef1f60cb926230a082c4a3089c14c35db0e1f"

# Override the temp directory to avoid sed escaping issues
# See https://github.com/haskell/cabal/issues/5386
Expand Down
2 changes: 1 addition & 1 deletion stack.yaml
@@ -1,3 +1,3 @@
packages:
- '.'
resolver: lts-15.10
resolver: lts-16.6
12 changes: 9 additions & 3 deletions unicode-transforms.cabal
@@ -1,9 +1,9 @@
cabal-version: 1.12

name: unicode-transforms
version: 0.3.6
version: 0.3.7
synopsis: Unicode normalization
description: Fast Unicode 12.1.0 normalization in Haskell (NFC, NFKC, NFD, NFKD).
description: Fast Unicode 13.0.0 normalization in Haskell (NFC, NFKC, NFD, NFKD).
category: Data,Text,Unicode
stability: Experimental
homepage: http://github.com/harendra-kumar/unicode-transforms
Expand All @@ -23,10 +23,15 @@ tested-with: GHC==7.10.3
, GHC==8.10.1
build-type: Simple
extra-source-files:
.gitignore
.travis.yml
appveyor.yml
Changelog.md
MAINTAINING.md
NOTES.md
README.md
benchmark/README.md
benchmark/NormalizeFile.hs
benchmark/data/AllChars.txt
benchmark/data/Deutsch.txt
benchmark/data/Devanagari.txt
Expand All @@ -36,6 +41,7 @@ extra-source-files:
benchmark/data/Vietnamese.txt
stack.yaml
stack-7.10.yaml
stack-8.0.yaml
unicode-data/README.md
unicode-data/ucd/NormalizationTest.txt
unicode-data/extra/NormalizationTest.txt
Expand Down Expand Up @@ -182,7 +188,7 @@ benchmark bench
, filepath >=1.0 && <2
, gauge >=0.2.0 && <0.3
, optparse-applicative >=0.0.1 && <0.16
, path >=0.0.0 && <0.8
, path >=0.0.0 && <0.9
, path-io >=0.1.0 && <1.7
, text >=1.1.1 && <1.3
, unicode-transforms
Expand Down

0 comments on commit 42b4d19

Please sign in to comment.