witch 1.2.1.0 → 1.2.1.1
raw patch · 7 files changed
+53/−52 lines, 7 filesdep ~HUnitdep ~basedep ~bytestringPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: HUnit, base, bytestring, containers, tagged, template-haskell, text, time, transformers
API changes (from Hackage documentation)
Files
- CHANGELOG.markdown +0/−4
- CHANGELOG.md +4/−0
- LICENSE.markdown +0/−21
- LICENSE.txt +21/−0
- README.markdown +0/−9
- README.md +8/−0
- witch.cabal +20/−18
− CHANGELOG.markdown
@@ -1,4 +0,0 @@-# Change log--Witch follows the [Package Versioning Policy](https://pvp.haskell.org). You can-find release notes [on GitHub](https://github.com/tfausak/witch/releases).
+ CHANGELOG.md view
@@ -0,0 +1,4 @@+# Change log++Witch follows the [Package Versioning Policy](https://pvp.haskell.org). You can+find release notes [on GitHub](https://github.com/tfausak/witch/releases).
− LICENSE.markdown
@@ -1,21 +0,0 @@-MIT License--Copyright (c) 2023 Taylor Fausak--Permission is hereby granted, free of charge, to any person obtaining a copy-of this software and associated documentation files (the "Software"), to deal-in the Software without restriction, including without limitation the rights-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell-copies of the Software, and to permit persons to whom the Software is-furnished to do so, subject to the following conditions:--The above copyright notice and this permission notice shall be included in all-copies or substantial portions of the Software.--THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE-SOFTWARE.
+ LICENSE.txt view
@@ -0,0 +1,21 @@+MIT License++Copyright (c) 2023 Taylor Fausak++Permission is hereby granted, free of charge, to any person obtaining a copy+of this software and associated documentation files (the "Software"), to deal+in the Software without restriction, including without limitation the rights+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell+copies of the Software, and to permit persons to whom the Software is+furnished to do so, subject to the following conditions:++The above copyright notice and this permission notice shall be included in all+copies or substantial portions of the Software.++THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE+SOFTWARE.
− README.markdown
@@ -1,9 +0,0 @@-# Witch--[](https://github.com/tfausak/witch/actions/workflows/workflow.yaml)-[](https://hackage.haskell.org/package/witch)-[](https://www.stackage.org/package/witch)--:mage_woman: Convert values from one type into another.--See the documentation on Hackage: <https://hackage.haskell.org/package/witch>.
+ README.md view
@@ -0,0 +1,8 @@+# Witch++[](https://github.com/tfausak/witch/actions/workflows/ci.yml)+[](https://hackage.haskell.org/package/witch)++:mage_woman: Convert values from one type into another.++See the documentation on Hackage: <https://hackage.haskell.org/package/witch>.
witch.cabal view
@@ -1,14 +1,15 @@ cabal-version: 2.2- name: witch-version: 1.2.1.0+version: 1.2.1.1 synopsis: Convert values from one type into another. description: Witch converts values from one type into another.- build-type: Simple category: Data-extra-source-files: CHANGELOG.markdown README.markdown-license-file: LICENSE.markdown+extra-doc-files:+ CHANGELOG.md+ README.md++license-file: LICENSE.txt license: MIT maintainer: Taylor Fausak @@ -18,17 +19,17 @@ flag pedantic default: False- description: Enables @-Werror@, which turns warnings into errors. manual: True common library+ build-depends: base ^>=4.18.0.0 || ^>=4.19.0.0 || ^>=4.20.0.0 build-depends:- , base >= 4.16.0 && < 4.20- , bytestring >= 0.11.3 && < 0.13- , containers >= 0.6.5 && < 0.8- , tagged >= 0.8.6 && < 0.9- , text >= 1.2.5 && < 1.3 || >= 2.0 && < 2.2- , time >= 1.11.1 && < 1.13+ bytestring ^>=0.11.4.0 || ^>=0.12.0.2,+ containers ^>=0.6.7 || ^>=0.7,+ tagged ^>=0.8.8,+ text ^>=2.0.2 || ^>=2.1,+ time ^>=1.12.2 || ^>=1.14,+ default-language: Haskell2010 ghc-options: -Weverything@@ -54,7 +55,6 @@ common executable import: library- build-depends: witch ghc-options: -rtsopts@@ -62,9 +62,10 @@ library import: library- build-depends:- , template-haskell >= 2.18 && < 2.22+ template-haskell ^>=2.20.0.0 || ^>=2.21.0.0 || ^>=2.22.0.0++ -- cabal-gild: discover source/library exposed-modules: Witch Witch.Encoding@@ -74,14 +75,15 @@ Witch.TryFrom Witch.TryFromException Witch.Utility+ hs-source-dirs: source/library test-suite witch-test-suite import: executable- build-depends:- , HUnit >= 1.6.1 && < 1.7- , transformers >= 0.5.6 && < 0.7+ HUnit ^>=1.6.2.0,+ transformers ^>=0.6.1.0,+ hs-source-dirs: source/test-suite main-is: Main.hs type: exitcode-stdio-1.0