Skip to content

Commit f5d0b13

Browse files
authored
Bump version to 0.7 (#973)
1 parent 22f2247 commit f5d0b13

File tree

5 files changed

+25
-13
lines changed

5 files changed

+25
-13
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
#
99
# For more information, see https://github.com/haskell-CI/haskell-ci
1010
#
11-
# version: 0.16.5
11+
# version: 0.16.3
1212
#
13-
# REGENDATA ("0.16.5",["github","--config=cabal.haskell-ci","--ghc-head","cabal.project"])
13+
# REGENDATA ("0.16.3",["github","--config=cabal.haskell-ci","--ghc-head","cabal.project"])
1414
#
1515
name: Haskell-CI
1616
on:
@@ -42,11 +42,6 @@ jobs:
4242
compilerVersion: 9.4.5
4343
setup-method: ghcup
4444
allow-failure: false
45-
- compiler: ghc-9.2.8
46-
compilerKind: ghc
47-
compilerVersion: 9.2.8
48-
setup-method: ghcup
49-
allow-failure: false
5045
- compiler: ghc-9.0.2
5146
compilerKind: ghc
5247
compilerVersion: 9.0.2

containers-tests/containers-tests.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ extra-source-files:
2727

2828
tested-with:
2929
GHC ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.8 ||
30-
==9.4.5 || ==9.6.2
30+
==9.4.5 || ==9.6.2 || ==9.8.1
3131

3232
source-repository head
3333
type: git

containers/changelog.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,31 @@
11
# Changelog for [`containers` package](http://github.com/haskell/containers)
22

3-
## ???
3+
## 0.7
44

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

13+
### Additions
14+
15+
* Add `Data.IntSet.fromRange`. (Soumik Sarkar)
16+
17+
### Documentation and other
18+
19+
* Add, improve, and correct documentation. (Niklas Hambüchen, Soumik Sarkar,
20+
tomjaguarpaw)
21+
22+
### Other/internal
23+
1124
* Remove the `stack.yaml` file. It was extremely stale, and its utility was a
1225
bit dubious in a GHC boot package. Closes #938.
1326

27+
* Add a bunch of new tests and benchmarks. (Soumik Sarkar)
28+
1429
## 0.6.7
1530

1631
### Additions

containers/containers.cabal

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: containers
2-
version: 0.6.7
2+
version: 0.6.8
33
license: BSD3
44
license-file: LICENSE
55
maintainer: [email protected]
@@ -26,7 +26,9 @@ extra-source-files:
2626
changelog.md
2727
mkappend.hs
2828

29-
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
29+
tested-with:
30+
GHC ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.8 ||
31+
==9.4.5 || ==9.6.2 || ==9.8.1
3032

3133
source-repository head
3234
type: git

containers/src/Data/IntSet/Internal.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1220,7 +1220,7 @@ fromList xs
12201220
--
12211221
-- > fromRange (low, high) == fromList [low..high]
12221222
--
1223-
-- @since FIXME
1223+
-- @since 0.7
12241224
fromRange :: (Key, Key) -> IntSet
12251225
fromRange (lx,rx)
12261226
| lx > rx = empty

0 commit comments

Comments
 (0)