himari 1.0.2.0 → 1.0.3.0
raw patch · 5 files changed
+14/−2 lines, 5 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- .hlint.yaml +3/−0
- CHANGELOG.md +7/−0
- fourmolu.yaml +2/−1
- himari.cabal +1/−1
- src/Himari/Prelude.hs +1/−0
.hlint.yaml view
@@ -598,6 +598,9 @@ - message: Use proper error handling name: errorWithoutStackTrace within: []+ - message: "Deprecated. Use error instead, which now includes stack traces."+ name: errorWithStackTrace+ within: [] - functions: - message: "Partial: throws on empty Fold. Use (^?) instead." name: "Control.Lens.Fold.^?!"
CHANGELOG.md view
@@ -7,6 +7,13 @@ ## [Unreleased] +## [1.0.3.0] - 2026-01-08++### Added++- `GHC.Stack` re-export in `Himari.Prelude` for call stack support (`HasCallStack`, `CallStack`, etc.)+- HLint rule for `errorWithStackTrace` (deprecated function warning)+ ## [1.0.2.0] - 2026-01-07 ### Added
fourmolu.yaml view
@@ -42,6 +42,8 @@ - module Himari.Prelude exports "base" Data.Tuple - module Himari.Prelude exports "base" Data.Void - module Himari.Prelude exports "base" Data.Word+ - module Himari.Prelude exports "base" GHC.Stack+ - module Himari.Prelude exports "base" Numeric.Natural - module Himari.Prelude exports "base" Prelude - module Himari.Prelude exports "base" Text.Show - module Himari.Prelude exports "convertible" Data.Convertible@@ -53,7 +55,6 @@ - module Himari.Prelude exports "mtl" Control.Monad.Reader - module Himari.Prelude exports "mtl" Control.Monad.State.Strict - module Himari.Prelude exports "mtl" Control.Monad.Writer.CPS- - module Himari.Prelude exports "base" Numeric.Natural - module Himari.Prelude exports "pretty-simple" Debug.Pretty.Simple - module Himari.Prelude exports "pretty-simple" Text.Pretty.Simple - module Himari.Prelude exports "primitive" Control.Monad.Primitive
himari.cabal view
@@ -1,6 +1,6 @@ cabal-version: 3.0 name: himari-version: 1.0.2.0+version: 1.0.3.0 synopsis: A standard library for Haskell as an alternative to rio description: A standard library for Haskell inspired by rio.
src/Himari/Prelude.hs view
@@ -40,6 +40,7 @@ import Data.Void as Export import Data.Word as Export import Debug.Pretty.Simple as Export+import GHC.Stack as Export import Himari.Prelude.Aeson as Export import Himari.Prelude.Arrow as Export import Himari.Prelude.Catch as Export