Skip to content

Commit

Permalink
Release 9.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
LeventErkok committed Jan 6, 2024
1 parent caecae1 commit ecec4a3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
6 changes: 5 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
* Hackage: <http://hackage.haskell.org/package/sbvPlugin>
* GitHub: <http://github.com/LeventErkok/sbvPlugin>

* Latest Hackage released version: 9.6.1, 2023-04-14
* Latest Hackage released version: 9.8.1, 2024-01-05

### Version 9.8.1, 2024-01-05
* Changes required to compile with GHC 9.8.1
* Bump up sbv dependence to >= 10.3

### Version 9.6.1, 2023-04-14
* Changes required to compile with GHC 9.6.1
Expand Down
16 changes: 8 additions & 8 deletions sbvPlugin.cabal
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
Cabal-Version : 2.2
Name : sbvPlugin
Version : 9.6.1
Version : 9.8.1
Category : Formal methods, Theorem provers, Math, SMT, Symbolic Computation
Synopsis : Formally prove properties of Haskell programs using SBV/SMT
Description : GHC plugin for proving properties over Haskell functions using SMT solvers, based
on the <http://hackage.haskell.org/package/sbv SBV> package.
.
See "Data.SBV.Plugin" for a quick example, or the modules under 'Data.SBV.Plugin.Examples'
for more details.
License : BSD3
License : BSD-3-Clause
License-file : LICENSE
Stability : Experimental
Author : Levent Erkok
Homepage : http://github.com/LeventErkok/sbvPlugin
Bug-reports : http://github.com/LeventErkok/sbvPlugin/issues
Maintainer : Levent Erkok ([email protected])
Build-Type : Simple
Cabal-Version : 1.14
Extra-Source-Files: INSTALL, README.md, COPYRIGHT, CHANGES.md

Tested-With : GHC==9.6.1
Tested-With : GHC==9.8.1

source-repository head
type: git
Expand All @@ -33,9 +33,9 @@ Library
, Data.SBV.Plugin.Examples.Maximum
, Data.SBV.Plugin.Examples.MergeSort
, Data.SBV.Plugin.Examples.MicroController
build-depends : base >= 4.11 && < 5
, sbv >= 10.1
, ghc >= 9.6.1
build-depends : base >= 4.19 && < 5
, sbv >= 10.3
, ghc >= 9.8.1
, ghc-prim
, containers
, mtl
Expand All @@ -50,7 +50,7 @@ Test-Suite sbvPluginTests
type : exitcode-stdio-1.0
default-language: Haskell2010
ghc-options : -Wall
Build-depends : base >= 4.11 && < 5
Build-depends : base >= 4.19 && < 5
, sbvPlugin
, tasty
, tasty-golden
Expand Down

0 comments on commit ecec4a3

Please sign in to comment.