Pick version numbers for next-supermajor release

This commit is contained in:
Michael Walker 2017-11-30 21:55:50 +00:00
parent 0c8e387339
commit 99cae72b42
10 changed files with 83 additions and 19 deletions

View File

@ -45,10 +45,10 @@ There are a few different packages under the Déjà Fu umbrella:
| | Version | Summary |
| - | ------- | ------- |
| [concurrency][h:conc] | 1.2.3.0 | Typeclasses, functions, and data types for concurrency and STM. |
| [dejafu][h:dejafu] | 0.9.1.2 | Systematic testing for Haskell concurrency. |
| [hunit-dejafu][h:hunit] | 0.7.1.1 | Deja Fu support for the HUnit test framework. |
| [tasty-dejafu][h:tasty] | 0.7.1.1 | Deja Fu support for the Tasty test framework. |
| [concurrency][h:conc] | 1.3.0.0 | Typeclasses, functions, and data types for concurrency and STM. |
| [dejafu][h:dejafu] | 1.0.0.0 | Systematic testing for Haskell concurrency. |
| [hunit-dejafu][h:hunit] | 1.0.0.0 | Deja Fu support for the HUnit test framework. |
| [tasty-dejafu][h:tasty] | 1.0.0.0 | Deja Fu support for the Tasty test framework. |
Each package has its own README and CHANGELOG in its subdirectory.

View File

@ -7,6 +7,19 @@ This project is versioned according to the [Package Versioning Policy](https://p
*de facto* standard Haskell versioning scheme.
1.3.0.0
-------
- **Date** unreleased
- **Git tag** [concurrency-1.3.0.0][]
- **Hackage** https://hackage.haskell.org/package/concurrency-1.3.0.0
[concurrency-1.3.0.0]: https://github.com/barrucadu/dejafu/releases/tag/concurrency-1.3.0.0
---------------------------------------------------------------------------------------------------
1.2.3.0
-------

View File

@ -2,7 +2,7 @@
-- documentation, see http://haskell.org/cabal/users-guide/
name: concurrency
version: 1.2.3.0
version: 1.3.0.0
synopsis: Typeclasses, functions, and data types for concurrency and STM.
description:
@ -32,7 +32,7 @@ source-repository head
source-repository this
type: git
location: https://github.com/barrucadu/dejafu.git
tag: concurrency-1.2.3.0
tag: concurrency-1.3.0.0
library
exposed-modules: Control.Monad.Conc.Class

View File

@ -7,6 +7,23 @@ This project is versioned according to the [Package Versioning Policy](https://p
*de facto* standard Haskell versioning scheme.
1.0.0.0
-------
- **Date** unreleased
- **Git tag** [dejafu-1.0.0.0][]
- **Hackage** https://hackage.haskell.org/package/dejafu-1.0.0.0
### Miscellaneous
- The minimum supported version of concurrency is now 1.3.0.0.
[dejafu-1.0.0.0]: https://github.com/barrucadu/dejafu/releases/tag/dejafu-1.0.0.0
---------------------------------------------------------------------------------------------------
0.9.1.2
-------

View File

@ -2,7 +2,7 @@
-- documentation, see http://haskell.org/cabal/users-guide/
name: dejafu
version: 0.9.1.2
version: 1.0.0.0
synopsis: Systematic testing for Haskell concurrency.
description:
@ -37,7 +37,7 @@ source-repository head
source-repository this
type: git
location: https://github.com/barrucadu/dejafu.git
tag: dejafu-0.9.1.2
tag: dejafu-1.0.0.0
library
exposed-modules: Test.DejaFu
@ -59,7 +59,7 @@ library
-- other-modules:
-- other-extensions:
build-depends: base >=4.8 && <5
, concurrency >=1.1 && <1.3
, concurrency >=1.3 && <1.4
, containers >=0.5 && <0.6
, deepseq >=1.1 && <2
, exceptions >=0.7 && <0.9

View File

@ -35,10 +35,10 @@ There are a few different packages under the Déjà Fu umbrella:
.. csv-table::
:header: "Package", "Version", "Summary"
"concurrency_", "1.2.3.0", "Typeclasses, functions, and data types for concurrency and STM"
"dejafu_", "0.9.1.2", "Systematic testing for Haskell concurrency"
"hunit-dejafu_", "0.7.1.1", "Déjà Fu support for the HUnit test framework"
"tasty-dejafu_", "0.7.1.1", "Déjà Fu support for the tasty test framework"
"concurrency_", "1.3.0.0", "Typeclasses, functions, and data types for concurrency and STM"
"dejafu_", "1.0.0.0", "Systematic testing for Haskell concurrency"
"hunit-dejafu_", "1.0.0.0", "Déjà Fu support for the HUnit test framework"
"tasty-dejafu_", "1.0.0.0", "Déjà Fu support for the tasty test framework"
.. _concurrency: https://hackage.haskell.org/package/concurrency
.. _dejafu: https://hackage.haskell.org/package/dejafu

View File

@ -7,6 +7,23 @@ This project is versioned according to the [Package Versioning Policy](https://p
*de facto* standard Haskell versioning scheme.
1.0.0.0
-------
- **Date** unreleased
- **Git tag** [hunit-dejafu-1.0.0.0][]
- **Hackage** https://hackage.haskell.org/package/hunit-dejafu-1.0.0.0
### Miscellaneous
- The minimum supported version of dejafu is now 1.0.0.0.
[hunit-dejafu-1.0.0.0]: https://github.com/barrucadu/dejafu/releases/tag/hunit-dejafu-1.0.0.0
---------------------------------------------------------------------------------------------------
0.7.1.1
-------

View File

@ -2,7 +2,7 @@
-- documentation, see http://haskell.org/cabal/users-guide/
name: hunit-dejafu
version: 0.7.1.1
version: 1.0.0.0
synopsis: Deja Fu support for the HUnit test framework.
description:
@ -30,7 +30,7 @@ source-repository head
source-repository this
type: git
location: https://github.com/barrucadu/dejafu.git
tag: hunit-dejafu-0.7.1.1
tag: hunit-dejafu-1.0.0.0
library
exposed-modules: Test.HUnit.DejaFu
@ -38,7 +38,7 @@ library
-- other-extensions:
build-depends: base >=4.8 && <5
, exceptions >=0.7 && <0.9
, dejafu >=0.7.1 && <0.10
, dejafu >=1.0 && <1.1
, HUnit >=1.2 && <1.7
-- hs-source-dirs:
default-language: Haskell2010

View File

@ -7,6 +7,23 @@ This project is versioned according to the [Package Versioning Policy](https://p
*de facto* standard Haskell versioning scheme.
1.0.0.0
-------
- **Date** unreleased
- **Git tag** [tasty-dejafu-1.0.0.0][]
- **Hackage** https://hackage.haskell.org/package/tasty-dejafu-1.0.0.0
### Miscellaneous
- The minimum supported version of dejafu is now 1.0.0.0.
[tasty-dejafu-1.0.0.0]: https://github.com/barrucadu/dejafu/releases/tag/tasty-dejafu-1.0.0.0
---------------------------------------------------------------------------------------------------
0.7.1.1
-------

View File

@ -2,7 +2,7 @@
-- documentation, see http://haskell.org/cabal/users-guide/
name: tasty-dejafu
version: 0.7.1.1
version: 1.0.0.0
synopsis: Deja Fu support for the Tasty test framework.
description:
@ -30,14 +30,14 @@ source-repository head
source-repository this
type: git
location: https://github.com/barrucadu/dejafu.git
tag: tasty-dejafu-0.7.1.1
tag: tasty-dejafu-1.0.0.0
library
exposed-modules: Test.Tasty.DejaFu
-- other-modules:
-- other-extensions:
build-depends: base >=4.8 && <5
, dejafu >=0.7.1 && <0.10
, dejafu >=1.0 && <1.1
, random >=1.0 && <1.2
, tagged >=0.8 && <0.9
, tasty >=0.10 && <0.13