Skip to content

Commit fc51b29

Browse files
committed
Merge remote-tracking branch 'origin/develop' into no-group
2 parents 512a1bb + 12e1510 commit fc51b29

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

ChangeLog.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
orphan for backwards compat, temporarily, but it should eventually be removed
1010
everywhere.
1111

12-
## Unreleased
12+
## 0.0.7.0 - 2022-06-23
1313

1414
* Use `commutative-semigroups` for `Commutative`, making `Additive` a
1515
deprecated alias.

patch.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: patch
2-
Version: 0.1.0.0
2+
Version: 0.0.7.0
33
Synopsis: Data structures for describing changes to other data structures.
44
Description:
55
Data structures for describing changes to other data structures.

src/Data/Semigroup/Additive.hs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{-# LANGUAGE ConstraintKinds #-}
22

33
{-|
4-
Description : A class for commutative semigroups
4+
Description : A deprecated module containing a deprecated alias to the class for commutative semigroups
55
-}
66
module Data.Semigroup.Additive
77
{-# DEPRECATED "Use 'Data.Semigroup.Commutative'" #-}
@@ -11,4 +11,5 @@ module Data.Semigroup.Additive
1111
import Data.Semigroup.Commutative
1212

1313
{-# DEPRECATED Additive "Use 'Data.Semigroup.Commutative.Commutative'" #-}
14+
-- | Deprecated alias for 'Commutative'
1415
type Additive = Commutative

0 commit comments

Comments
 (0)