Skip to content

Commit

Permalink
Bump version to 0.7 (#973)
Browse files Browse the repository at this point in the history
  • Loading branch information
treeowl authored Sep 27, 2023
1 parent 22f2247 commit f5d0b13
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 13 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
#
# For more information, see https://github.com/haskell-CI/haskell-ci
#
# version: 0.16.5
# version: 0.16.3
#
# REGENDATA ("0.16.5",["github","--config=cabal.haskell-ci","--ghc-head","cabal.project"])
# REGENDATA ("0.16.3",["github","--config=cabal.haskell-ci","--ghc-head","cabal.project"])
#
name: Haskell-CI
on:
Expand Down Expand Up @@ -42,11 +42,6 @@ jobs:
compilerVersion: 9.4.5
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.2.8
compilerKind: ghc
compilerVersion: 9.2.8
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.0.2
compilerKind: ghc
compilerVersion: 9.0.2
Expand Down
2 changes: 1 addition & 1 deletion containers-tests/containers-tests.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ extra-source-files:

tested-with:
GHC ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.8 ||
==9.4.5 || ==9.6.2
==9.4.5 || ==9.6.2 || ==9.8.1

source-repository head
type: git
Expand Down
19 changes: 17 additions & 2 deletions containers/changelog.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,31 @@
# Changelog for [`containers` package](http://github.com/haskell/containers)

## ???
## 0.7

* Breaking changes to `Data.Graph.SCC v`:
### Breaking changes

* Breaking changes to `Data.Graph.SCC v` (bodʲɪˈɡrʲim):
* `CyclicSCC [v]` is now not a constructor,
but a bundled pattern synonym for backward compatibility.
* `NECyclicSCC (NonEmpty v)` is a new constructor, maintaining an invariant
that a set of mutually reachable vertices is non-empty.

### Additions

* Add `Data.IntSet.fromRange`. (Soumik Sarkar)

### Documentation and other

* Add, improve, and correct documentation. (Niklas Hambüchen, Soumik Sarkar,
tomjaguarpaw)

### Other/internal

* Remove the `stack.yaml` file. It was extremely stale, and its utility was a
bit dubious in a GHC boot package. Closes #938.

* Add a bunch of new tests and benchmarks. (Soumik Sarkar)

## 0.6.7

### Additions
Expand Down
6 changes: 4 additions & 2 deletions containers/containers.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: containers
version: 0.6.7
version: 0.6.8
license: BSD3
license-file: LICENSE
maintainer: [email protected]
Expand All @@ -26,7 +26,9 @@ extra-source-files:
changelog.md
mkappend.hs

tested-with: GHC==9.6.2, GHC==9.4.5, GHC==9.2.8, GHC==9.0.2, GHC==8.10.7, GHC==8.8.4, GHC==8.6.5, GHC==8.4.4, GHC==8.2.2
tested-with:
GHC ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.8 ||
==9.4.5 || ==9.6.2 || ==9.8.1

source-repository head
type: git
Expand Down
2 changes: 1 addition & 1 deletion containers/src/Data/IntSet/Internal.hs
Original file line number Diff line number Diff line change
Expand Up @@ -1220,7 +1220,7 @@ fromList xs
--
-- > fromRange (low, high) == fromList [low..high]
--
-- @since FIXME
-- @since 0.7
fromRange :: (Key, Key) -> IntSet
fromRange (lx,rx)
| lx > rx = empty
Expand Down

0 comments on commit f5d0b13

Please sign in to comment.