base-compat-migrate 0.1.0.0 → 0.1.0.1
raw patch · 3 files changed
+16/−4 lines, 3 filesdep ~base
Dependency ranges changed: base
Files
- CHANGELOG.md +4/−0
- README.md +7/−0
- base-compat-migrate.cabal +5/−4
CHANGELOG.md view
@@ -1,5 +1,9 @@ # Changelog for base-compat-migrate +## 0.1.0.1++* Upgrade to `base == 4.11.1.*`+ ## 0.1.0.0 * Initial release
README.md view
@@ -43,6 +43,13 @@ Whenever you wish to support newer versions of `base` or `base-compat` you can repeat these steps. +### Common Issues with Solutions++* If your package declares Paths modules it won't compile without+ access to base. You can drop the Paths module until the affected+ component builds, and then add it again along with the base+ dependency.+ ## Dependencies Since `base-compat-migrate` re-exports modules, we depend on minor
base-compat-migrate.cabal view
@@ -1,17 +1,18 @@ cabal-version: 1.21 name: base-compat-migrate-version: 0.1.0.0+version: 0.1.0.1 license: BSD3 license-file: LICENSE copyright: (c) 2018 Adam Bergmark maintainer: adam@bergmark.nl author: Adam Bergmark-tested-with: ghc ==8.4.1+tested-with: ghc ==8.4.3 homepage: https://github.com/bergmark/base-compat-migrate#readme bug-reports: https://github.com/bergmark/base-compat-migrate/issues synopsis: Helps migrating projects to base-compat(-batteries). description:- Please see the included README or visit <https://github.com/bergmark/base-compat-migrate#readme>.+ Temporarily replace your base & base-compat(-batteries) dependencies with base-compat-migrate to verify that you are using all available base-compat modules.+ Please see the included README or visit <https://github.com/bergmark/base-compat-migrate#readme> for more information. category: Development build-type: Simple extra-source-files:@@ -236,7 +237,7 @@ Paths_base_compat_migrate default-language: Haskell2010 build-depends:- base ==4.11.0.*,+ base ==4.11.1.*, base-compat ==0.10.1.* executable base-compat-migrate-generate