unpacked-maybe-text 0.1.0.0 → 0.1.0.1
raw patch · 2 files changed
+34/−23 lines, 2 filesnew-uploaderPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +9/−0
- unpacked-maybe-text.cabal +25/−23
+ CHANGELOG.md view
@@ -0,0 +1,9 @@+# Revision history for unpacked-maybe-text++## 0.1.0.1 -- 2024-01-31++* Update package metadata.++## 0.1.0.0 -- 2019-09-30++* First version.
unpacked-maybe-text.cabal view
@@ -1,7 +1,7 @@-cabal-version: 2.2-name: unpacked-maybe-text-version: 0.1.0.0-synopsis: optional text that unpacks well+cabal-version: 2.2+name: unpacked-maybe-text+version: 0.1.0.1+synopsis: optional text that unpacks well description: This library provides a specialization of `Maybe ShortText`. When this is an unpacked field of data constructor, this will@@ -12,27 +12,29 @@ use the empty text value as a placeholder that signifies `Nothing`. This alternative may or may not be an option depending on whether or not the empty string is valid in your problem domain.-homepage: https://github.com/andrewthad/unpacked-maybe-text-bug-reports: https://github.com/andrewthad/unpacked-maybe-text/issues-author: Andrew Martin-maintainer: andrew.thaddeus@gmail.com-category: Data-copyright: 2019 Andrew Martin-license: BSD-3-Clause-license-file: LICENSE-build-type: Simple -source-repository head- type: git- location: https://github.com/andrewthad/unpacked-maybe-numeric+homepage: https://github.com/byteverse/unpacked-maybe-text+bug-reports: https://github.com/byteverse/unpacked-maybe-text/issues+author: Andrew Martin+maintainer: amartin@layer3com.com+category: Data+copyright: 2019 Andrew Martin+license: BSD-3-Clause+license-file: LICENSE+build-type: Simple+extra-doc-files: CHANGELOG.md library- exposed-modules:- Data.Maybe.Unpacked.Text.Short- hs-source-dirs: src+ exposed-modules: Data.Maybe.Unpacked.Text.Short+ hs-source-dirs: src build-depends:- , base >=4.10.1.0 && <5- , text-short >=0.1.3 && <0.2- , bytestring >=0.10.8 && <0.11- ghc-options: -Wall -O2+ , base >=4.10.1.0 && <5+ , bytestring >=0.10.8 && <0.12+ , text-short >=0.1.3 && <0.2++ ghc-options: -Wall -O2 default-language: Haskell2010++source-repository head+ type: git+ location: git://github.com/byteverse/unpacked-maybe-text.git