meta: Release v1.0.2.3

This commit is contained in:
Kirill Elagin 2021-11-13 14:05:42 -05:00
parent 4df868d067
commit f3537cd7c1
4 changed files with 38 additions and 7 deletions

View File

@ -3,6 +3,9 @@
## Unreleased
## 1.0.2.3
Support GHC 9.2.1.
### Changed

View File

@ -3,7 +3,7 @@
# SPDX-License-Identifier: MPL-2.0
name: with-utf8
version: 1.0.2.2
version: 1.0.2.3
synopsis: Get your IO right on the first try
description: |
This minimalistic library helps you navigate the world of text encodings

View File

@ -3,7 +3,35 @@
# For more information, please see the documentation at:
# https://docs.haskellstack.org/en/stable/lock_files
packages: []
packages:
- completed:
hackage: th-env-0.1.0.3@sha256:3804eeff3edf8b4c3c6ca68a8b4eff3bf23c07c468c699e3f010c4dec1603830,1386
pantry-tree:
size: 370
sha256: f14846f743126dde54c05cb7eb3038b059bec372532582858ca982bdebef0bad
original:
hackage: th-env-0.1.0.3
- completed:
hackage: constraints-0.13.1@sha256:3d2002767a32e0c0ea156276c34de926875817c4db385d8e75776b6e35b0267d,2396
pantry-tree:
size: 867
sha256: a4d80e46d52971b0f74051c3cc2a7e87408b6e1e19b5fb4814360441c9e524a0
original:
hackage: constraints-0.13.1
- completed:
hackage: hashable-1.3.5.0@sha256:47d1232d9788bb909cfbd80618de18dcdfb925609593e202912bd5841db138c1,4193
pantry-tree:
size: 1248
sha256: adde5ecc080faa094750544837937cf876e65bf5bf28d81db22e7401faa46bf3
original:
hackage: hashable-1.3.5.0
- completed:
hackage: random-1.2.1@sha256:8bee24dc0c985a90ee78d94c61f8aed21c49633686f0f1c14c5078d818ee43a2,6598
pantry-tree:
size: 1528
sha256: 8bdc994ce41f43624ab42302a881fe5a0f81d965f5d238841e24943664681a06
original:
hackage: random-1.2.1
snapshots:
- completed:
size: 586069

View File

@ -4,10 +4,10 @@ cabal-version: 1.18
--
-- see: https://github.com/sol/hpack
--
-- hash: 906fcdb75bd6730f9fe9e6383fdebc53f13cea49ad97c5f0bbd3b7a85a056830
-- hash: a503b7726c9828d56678af138259fcb28ff277506741565ba90bba76c86bbd3a
name: with-utf8
version: 1.0.2.2
version: 1.0.2.3
synopsis: Get your IO right on the first try
description: This minimalistic library helps you navigate the world of text encodings
avoiding @invalid argument (invalid byte sequence)@
@ -50,7 +50,7 @@ library
lib
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints
build-depends:
base >=4.10 && <4.16
base >=4.10 && <4.17
, safe-exceptions ==0.1.*
, text >=0.7 && <1.3
default-language: Haskell2010
@ -65,7 +65,7 @@ executable utf8-troubleshoot
c-sources:
app/utf8-troubleshoot/cbits/locale.c
build-depends:
base >=4.10 && <4.16
base >=4.10 && <4.17
, directory >=1.2.5.0 && <1.4
, filepath >=1.0 && <1.5
, process >=1.0.1.1 && <1.7
@ -91,7 +91,7 @@ test-suite with-utf8-test
tasty-discover:tasty-discover
build-depends:
HUnit
, base >=4.10 && <4.16
, base >=4.10 && <4.17
, deepseq
, hedgehog
, safe-exceptions