oughta 0.1.0.0 → 0.1.1.0
raw patch · 3 files changed
+18/−2 lines, 3 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- CHANGELOG.md +6/−0
- README.md +10/−0
- oughta.cabal +2/−2
CHANGELOG.md view
@@ -1,3 +1,9 @@+# [0.1.1.0] -- 2025-04-22++[0.1.1.0]: https://github.com/GaloisInc/oughta/releases/tag/v0.1.1.0++- Add support for GHC 9.6 and 9.4.+ # [0.1.0.0] -- 2025-04-22 [0.1.0.0]: https://github.com/GaloisInc/oughta/releases/tag/v0.1.0.0
README.md view
@@ -247,3 +247,13 @@ and Haskell APIs are considered to be part of the public interface. [pvp]: https://pvp.haskell.org/++## GHC support policy++We support at least three versions of GHC at a time. We are not aggressive about+dropping older versions, but will generally do so for versions outside of the+support window if either (1) maintaining that support would require significant+effort, such as significant numbers of C pre-processor `ifdef` sections or Cabal+`if` sections, or (2) the codebase could benefit significantly from features+that are only available on more recent versions of GHC. We try to support new+versions as soon as they are supported by the libraries that we depend on.
oughta.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: oughta-version: 0.1.0.0+version: 0.1.1.0 author: Galois, Inc. maintainer: grease@galois.com copyright: Galois, Inc. 2025@@ -26,7 +26,7 @@ common shared default-language: GHC2021- build-depends: base >= 4.19 && < 5+ build-depends: base >= 4.17 && < 5 -- Specifying -Wall and -Werror can cause the project to fail to build on -- newer versions of GHC simply due to new warnings being added to -Wall. To