salve 2.0.0.4 → 2.0.0.5
raw patch · 7 files changed
+45/−47 lines, 7 filesdep ~HUnitdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: HUnit, base
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/−10
- README.md +9/−0
- salve.cabal +11/−12
− CHANGELOG.markdown
@@ -1,4 +0,0 @@-# Change log--Salve follows the [Package Versioning Policy](https://pvp.haskell.org).-You can find release notes [on GitHub](https://github.com/tfausak/salve/releases).
+ CHANGELOG.md view
@@ -0,0 +1,4 @@+# Change log++Salve follows the [Package Versioning Policy](https://pvp.haskell.org).+You can find release notes [on GitHub](https://github.com/tfausak/salve/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,10 +0,0 @@-# Salve--[](https://github.com/tfausak/salve/actions/workflows/workflow.yaml)-[](https://hackage.haskell.org/package/salve)-[](https://www.stackage.org/package/salve)--Salve provides semantic version numbers and constraints for Haskell.--Salve has extensive documentation available on Hackage:-<https://hackage.haskell.org/package/salve>.
+ README.md view
@@ -0,0 +1,9 @@+# Salve++[](https://github.com/tfausak/salve/actions/workflows/ci.yml)+[](https://hackage.haskell.org/package/salve)++Salve provides semantic version numbers and constraints for Haskell.++Salve has extensive documentation available on Hackage:+<https://hackage.haskell.org/package/salve>.
salve.cabal view
@@ -1,16 +1,17 @@ cabal-version: 2.2- name: salve-version: 2.0.0.4-+version: 2.0.0.5 synopsis: Semantic version numbers and constraints. description: Salve provides semantic version (SemVer) numbers and constraints (ranges). build-type: Simple category: Distribution-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 @@ -20,12 +21,10 @@ flag pedantic default: False- description: Enables @-Werror@, which turns warnings into errors. manual: True common library- build-depends:- , base >= 4.16.0 && < 4.20+ build-depends: base ^>=4.18.0.0 || ^>=4.19.0.0 || ^>=4.20.0.0 default-language: Haskell2010 ghc-options: -Weverything@@ -43,7 +42,6 @@ common executable import: library- build-depends: salve ghc-options: -rtsopts@@ -52,17 +50,18 @@ library import: library-+ -- cabal-gild: discover source/library exposed-modules: Salve Salve.Internal+ hs-source-dirs: source/library test-suite salve-test-suite import: executable- build-depends:- , HUnit >= 1.6.1 && < 1.7+ HUnit ^>=1.6.2.0+ hs-source-dirs: source/test-suite main-is: Main.hs type: exitcode-stdio-1.0