diff --git a/.hlint.yaml b/.hlint.yaml
--- a/.hlint.yaml
+++ b/.hlint.yaml
@@ -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.^?!"
diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
diff --git a/fourmolu.yaml b/fourmolu.yaml
--- a/fourmolu.yaml
+++ b/fourmolu.yaml
@@ -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
diff --git a/himari.cabal b/himari.cabal
--- a/himari.cabal
+++ b/himari.cabal
@@ -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.
diff --git a/src/Himari/Prelude.hs b/src/Himari/Prelude.hs
--- a/src/Himari/Prelude.hs
+++ b/src/Himari/Prelude.hs
@@ -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
