Skip to content

Commit

Permalink
v1.4.6.1
Browse files Browse the repository at this point in the history
- revert 'infixr 0 `deepseq`'
  • Loading branch information
mixphix committed Nov 14, 2021
1 parent b3adb3d commit 1a736f6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
1 change: 0 additions & 1 deletion Control/DeepSeq.hs
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,6 @@ instance (NFData1 f, GNFData One g) => GNFData One (f :.: g) where
grnf args = liftRnf (grnf args) . unComp1

infixr 0 $!!
infixr 0 `deepseq`

-- | 'deepseq': fully evaluates the first argument, before returning the
-- second.
Expand Down
8 changes: 6 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
# Changelog for [`deepseq` package](http://hackage.haskell.org/package/deepseq)

## 1.4.6.1

* Revert `infixr 0 deepseq`; this is a breaking change and requires a major version bump

## 1.4.6.0

* Remove instances for Data.Semigroup.Option for GHC >= 9.2
([#62](https://github.com/haskell/deepseq/pull/62))
* Set `infixr 0` for `deepseq`
Makes infix use of 'deepseq' parse the same way as infix use of 'seq'

## 1.4.5.0

* Add `GNFData` for URec
This will enable deriving NFData instances for unboxed types
* Set `infixr 0` for `deepseq`
Makes infix use of 'deepseq' parse the same way as infix use of 'seq'

## 1.4.4.0 *Sep 2018*

Expand Down
12 changes: 6 additions & 6 deletions deepseq.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 1.12
name: deepseq
version: 1.4.6.0
version: 1.4.6.1
-- NOTE: Don't forget to update ./changelog.md

license: BSD3
Expand Down Expand Up @@ -31,11 +31,11 @@ tested-with:
GHC==8.6.5, GHC==8.6.4,GHC==8.6.3,GHC==8.6.3,GHC==8.6.1,
GHC==8.4.4, GHC==8.4.3, GHC==8.4.2, GHC==8.4.1,
GHC==8.2.2, GHC==8.2.1,
GHC==8.0.2, GHC==8.0.1,
GHC==7.10.3, GHC==7.10.2, GHC==7.10.1,
GHC==7.8.4, GHC==7.8.3, GHC==7.8.2, GHC==7.8.1,
GHC==7.6.3, GHC==7.6.2, GHC==7.6.1,
GHC==7.4.2, GHC==7.4.1
GHC==8.0.2,
GHC==7.10.3,
GHC==7.8.4,
GHC==7.6.3,
GHC==7.4.2

extra-source-files: changelog.md

Expand Down

0 comments on commit 1a736f6

Please sign in to comment.