universum 1.8.3 → 1.8.3.1
raw patch · 3 files changed
+16/−9 lines, 3 filesdep −ghc-primnew-uploaderPVP ok
version bump matches the API change (PVP)
Dependencies removed: ghc-prim
API changes (from Hackage documentation)
Files
- CHANGES.md +6/−0
- src/Universum/Base.hs +1/−3
- universum.cabal +9/−6
CHANGES.md view
@@ -1,3 +1,9 @@+1.8.3.1+=======++* [#304](https://github.com/serokell/universum/pull/304)+ * Add support for GHC-9.14 without any user-visible changes.+ 1.8.3 =======
src/Universum/Base.hs view
@@ -38,7 +38,6 @@ , module GHC.Real , module GHC.Show , module GHC.TypeNats- , module GHC.Types , module GHC.OverloadedLabels , module GHC.ExecutionStack , module GHC.Stack@@ -75,7 +74,7 @@ import Data.Type.Equality (type (~)) #endif -import GHC.Base (String, asTypeOf, maxInt, minInt, ord, seq)+import GHC.Base (Bool, Char, Coercible, IO, Int, Ordering, String, Word, asTypeOf, maxInt, minInt, ord, seq) import GHC.Enum (Bounded (..), Enum (..), boundedEnumFrom, boundedEnumFromThen) import GHC.ExecutionStack (getStackTrace, showStackTrace) import GHC.Exts (FunPtr, Ptr)@@ -88,7 +87,6 @@ import GHC.Stack (CallStack, HasCallStack, callStack, currentCallStack, getCallStack, prettyCallStack, prettySrcLoc, withFrozenCallStack) import GHC.TypeNats (CmpNat, KnownNat, Nat, SomeNat (..), natVal, someNatVal)-import GHC.Types (Bool, Char, Coercible, IO, Int, Ordering, Word) -- $setup -- >>> import Universum.Function (const, ($))
universum.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.2 name: universum-version: 1.8.3+version: 1.8.3.1 synopsis: Custom prelude used in Serokell description: See README.md file for more details. homepage: https://github.com/serokell/universum@@ -17,17 +17,18 @@ , GHC == 9.0.2 , GHC == 9.2.8 , GHC == 9.4.8- , GHC == 9.6.6- , GHC == 9.8.2- , GHC == 9.10.1+ , GHC == 9.6.7+ , GHC == 9.8.4+ , GHC == 9.10.3 , GHC == 9.12.2+ , GHC == 9.14.1 extra-doc-files: CHANGES.md , CONTRIBUTING.md , README.md source-repository head type: git- location: git@github.com:serokell/universum.git+ location: https://github.com/serokell/universum.git common common-options build-depends: base >= 4.8 && < 5@@ -48,6 +49,9 @@ if impl(ghc >= 9.2.0) ghc-options: -Wno-missing-kind-signatures + if impl(ghc >= 9.14.0)+ ghc-options: -Wno-pattern-namespace-specifier+ default-language: Haskell2010 default-extensions: TypeOperators@@ -100,7 +104,6 @@ build-depends: bytestring , containers , deepseq- , ghc-prim >= 0.4.0.0 , hashable , microlens , microlens-mtl