autoexporter 2.0.0.10 → 2.0.0.11
raw patch · 5 files changed
+35/−43 lines, 5 filesdep ~Cabal-syntaxdep ~basedep ~directoryPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: Cabal-syntax, base, directory, filepath
API changes (from Hackage documentation)
Files
- LICENSE.markdown +0/−21
- LICENSE.txt +21/−0
- README.markdown +2/−3
- autoexporter.cabal +12/−14
- source/executable/Main.hs +0/−5
− 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) 2024 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 view
@@ -1,8 +1,7 @@ # Autoexporter -[](https://github.com/tfausak/autoexporter/actions/workflows/workflow.yaml)-[](https://hackage.haskell.org/package/autoexporter)-[](https://www.stackage.org/package/autoexporter)+[](https://github.com/tfausak/autoexporter/actions/workflows/ci.yml)+[](https://hackage.haskell.org/package/autoexporter) Autoexporter automatically re-exports Haskell modules.
autoexporter.cabal view
@@ -1,15 +1,15 @@ cabal-version: 2.2- name: autoexporter-version: 2.0.0.10-+version: 2.0.0.11 synopsis: Automatically re-export modules. description: Autoexporter automatically re-exports modules.- build-type: Simple category: Utility-extra-source-files: CHANGELOG.markdown README.markdown-license-file: LICENSE.markdown+extra-source-files:+ CHANGELOG.markdown+ README.markdown++license-file: LICENSE.txt license: MIT maintainer: Taylor Fausak @@ -23,11 +23,7 @@ manual: True common library- build-depends:- , base >= 4.16.0 && < 4.20- , Cabal-syntax >= 3.8.1.0 && < 3.13- , directory >= 1.3.6 && < 1.4- , filepath >= 1.4.2 && < 1.5+ build-depends: base ^>=4.18.0.0 || ^>=4.19.0.0 || ^>=4.20.0.0 default-language: Haskell2010 ghc-options: -Weverything@@ -46,21 +42,23 @@ common executable import: library- build-depends: autoexporter ghc-options: -rtsopts -threaded- -Wno-unused-packages library import: library+ build-depends:+ Cabal-syntax ^>=3.10.1.0 || ^>=3.12.0.0,+ directory ^>=1.3.8.1,+ filepath ^>=1.4.100.1 || ^>=1.5.2.0, + -- cabal-gild: discover source/library exposed-modules: Autoexporter hs-source-dirs: source/library executable autoexporter import: executable- hs-source-dirs: source/executable main-is: Main.hs
source/executable/Main.hs view
@@ -1,8 +1,3 @@-module Main- ( main,- )-where- import qualified Autoexporter main :: IO ()