Skip to content

Commit 04d2245

Browse files
kpadmasolaollef
authored andcommitted
Prepare for release 0.3.1.2
- Bump up version - Add version bounds suggested by `cabal gen-bounds` - Update Copyright year upper bound
1 parent 5ccf67c commit 04d2245

File tree

3 files changed

+25
-14
lines changed

3 files changed

+25
-14
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Unreleased
22

3+
# 0.3.1.2
4+
5+
- Add docs about query params, mention Eclair in README
6+
- Add note about IO actions
7+
- Fix template stages to build with GHC 9.2.2
8+
- Fix build errors with GHC 9.6.2
9+
- Add CI in GitHub Actions Workflow
10+
311
# 0.3.1.1
412

513
- Fix a concurrency bug in `memoiseWithCycleDetection`, where a race condition meant that it could sometimes throw a `Cyclic` exception when there weren't actually cycles

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright Olle Fredriksson (c) 2018-2021
1+
Copyright Olle Fredriksson (c) 2018-2023
22

33
All rights reserved.
44

rock.cabal

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: rock
2-
version: 0.3.1.1
2+
version: 0.3.1.2
33
synopsis: A build system for incremental, parallel, and demand-driven computations
44
description: See <https://www.github.com/ollef/rock> for more
55
information and
@@ -10,7 +10,7 @@ license: BSD3
1010
license-file: LICENSE
1111
author: Olle Fredriksson
1212
maintainer: [email protected]
13-
copyright: 2018-2021 Olle Fredriksson
13+
copyright: 2018-2023 Olle Fredriksson
1414
category: Development
1515
build-type: Simple
1616
extra-source-files:
@@ -21,6 +21,9 @@ tested-with: GHC == 8.2.2
2121
, GHC == 8.4.3
2222
, GHC == 8.6.5
2323
, GHC == 8.8.3
24+
, GHC == 9.2.2
25+
, GHC == 9.4.4
26+
, GHC == 9.6.2
2427

2528
library
2629
ghc-options: -Wall
@@ -39,17 +42,17 @@ library
3942
Rock.Core
4043
Rock.Traces
4144
build-depends: base >= 4.7 && < 5
42-
, constraints-extras >= 0.3
43-
, dependent-hashmap >= 0.1
44-
, dependent-sum >= 0.6
45-
, deriving-compat >= 0.5
46-
, hashable >= 1.3
47-
, lifted-base >= 0.2
48-
, monad-control >= 1.0
49-
, mtl >= 2.2
50-
, transformers >= 0.5
51-
, transformers-base >= 0.4
52-
, unordered-containers >= 0.2
45+
, constraints-extras >= 0.4.0 && < 0.5
46+
, dependent-hashmap >= 0.1.0 && < 0.2
47+
, dependent-sum >= 0.7.2 && < 0.8
48+
, deriving-compat >= 0.6.5 && < 0.7
49+
, hashable >= 1.4.3 && < 1.5
50+
, lifted-base >= 0.2.3 && < 0.3
51+
, monad-control >= 1.0.3 && < 1.1
52+
, mtl >= 2.3.1 && < 2.4
53+
, transformers >= 0.6.1 && < 0.7
54+
, transformers-base >= 0.4.6 && < 0.5
55+
, unordered-containers >= 0.2.19 && < 0.3
5356
default-language: Haskell2010
5457
default-extensions: OverloadedStrings
5558

0 commit comments

Comments
 (0)