Skip to content

Commit 3cf3c24

Browse files
Bump package version and dependencies. (#87)
2 parents 0d83076 + 1e3e3ac commit 3cf3c24

File tree

16 files changed

+22
-18
lines changed

16 files changed

+22
-18
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.3.0.2
2+
3+
- Revised upper bounds for package dependencies.
4+
15
# 0.3.0.1
26

37
- Added support for GHC `9.8`.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright © 2022–2023 Jonathan Knowles
189+
Copyright © 2022–2024 Jonathan Knowles
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

quickcheck-monoid-subclasses.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
cabal-version: 3.0
22
name: quickcheck-monoid-subclasses
3-
version: 0.3.0.1
3+
version: 0.3.0.2
44
bug-reports: https://github.com/jonathanknowles/quickcheck-monoid-subclasses/issues
55
license: Apache-2.0
66
license-file: LICENSE
77
author: Jonathan Knowles
88
maintainer: mail@jonathanknowles.net
9-
copyright: 2022–2023 Jonathan Knowles
9+
copyright: 2022–2024 Jonathan Knowles
1010
category: Testing
1111
synopsis: Testing monoid subclass instances with QuickCheck
1212
description:
@@ -23,9 +23,9 @@ common dependency-base
2323
common dependency-bytestring
2424
build-depends:bytestring >= 0.10.12.0 && < 0.13
2525
common dependency-commutative-semigroups
26-
build-depends:commutative-semigroups >= 0.1.0.0 && < 0.2
26+
build-depends:commutative-semigroups >= 0.1.0.0 && < 0.3
2727
common dependency-containers
28-
build-depends:containers >= 0.6.5.1 && < 0.7
28+
build-depends:containers >= 0.6.5.1 && < 0.8
2929
common dependency-hspec
3030
build-depends:hspec >= 2.10.7 && < 2.12
3131
common dependency-monoid-subclasses

src/internal/Internal.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-- |
2-
-- Copyright: © 2022–2023 Jonathan Knowles
2+
-- Copyright: © 2022–2024 Jonathan Knowles
33
-- License: Apache-2.0
44
--
55
module Internal

src/internal/Internal/Semigroup/Eq.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-- |
2-
-- Copyright: © 2022–2023 Jonathan Knowles
2+
-- Copyright: © 2022–2024 Jonathan Knowles
33
-- License: Apache-2.0
44
--
55
module Internal.Semigroup.Eq

src/internal/Internal/Semigroup/Tuple.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{- HLINT ignore "Redundant bracket" -}
44

55
-- |
6-
-- Copyright: © 2022–2023 Jonathan Knowles
6+
-- Copyright: © 2022–2024 Jonathan Knowles
77
-- License: Apache-2.0
88
--
99
module Internal.Semigroup.Tuple

src/prelude/Internal/Prelude.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-- |
2-
-- Copyright: © 2022–2023 Jonathan Knowles
2+
-- Copyright: © 2022–2024 Jonathan Knowles
33
-- License: Apache-2.0
44
--
55
module Internal.Prelude

src/public/Test/QuickCheck/Classes/Monoid/Factorial.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{- HLINT ignore "Use const" -}
66

77
-- |
8-
-- Copyright: © 2022–2023 Jonathan Knowles
8+
-- Copyright: © 2022–2024 Jonathan Knowles
99
-- License: Apache-2.0
1010
--
1111
-- This module provides 'Laws' definitions for classes exported by

src/public/Test/QuickCheck/Classes/Monoid/GCD.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{- HLINT ignore "Redundant ==" -}
44

55
-- |
6-
-- Copyright: © 2022–2023 Jonathan Knowles
6+
-- Copyright: © 2022–2024 Jonathan Knowles
77
-- License: Apache-2.0
88
--
99
-- This module provides 'Laws' definitions for classes exported by

src/public/Test/QuickCheck/Classes/Monoid/LCM.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{- HLINT ignore "Use &&" -}
44

55
-- |
6-
-- Copyright: © 2022–2023 Jonathan Knowles
6+
-- Copyright: © 2022–2024 Jonathan Knowles
77
-- License: Apache-2.0
88
--
99
-- This module provides 'Laws' definitions for classes exported by

0 commit comments

Comments
 (0)