diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+# Version [0.1.1.3](https://github.com/sorki/nix-narinfo/compare/0.1.1.2...0.1.1.3) (2026-06-11)
+
+* Render and parse the content-address field as `CA:` to match Nix's
+  case-sensitive narinfo key (was `Ca:`, which Nix silently ignored)
+
 # Version [0.1.1.2](https://github.com/sorki/nix-narinfo/compare/0.1.1.1...0.1.1.2) (2025-05-16)
 
 * Fix testsuite build for GHC 9.10.2 [#9](https://github.com/sorki/nix-narinfo/pull/9)
diff --git a/nix-narinfo.cabal b/nix-narinfo.cabal
--- a/nix-narinfo.cabal
+++ b/nix-narinfo.cabal
@@ -1,6 +1,6 @@
 cabal-version:       2.2
 name:                nix-narinfo
-version:             0.1.1.2
+version:             0.1.1.3
 synopsis:            Parse and render .narinfo files
 description:         Support for parsing and rendering Nix .narinfo files
 homepage:            https://github.com/sorki/nix-narinfo
diff --git a/src/Nix/NarInfo/Builder.hs b/src/Nix/NarInfo/Builder.hs
--- a/src/Nix/NarInfo/Builder.hs
+++ b/src/Nix/NarInfo/Builder.hs
@@ -48,7 +48,7 @@
   <> optKey  "Deriver"     deriver
   <> optKey  "System"      system
   <> optKey  "Sig"         sig
-  <> optKey  "Ca"          ca
+  <> optKey  "CA"          ca
   where
     key' k v    = k <> ": " <> v <> "\n"
     key k v     = key' k (string v)
diff --git a/src/Nix/NarInfo/Parser.hs b/src/Nix/NarInfo/Parser.hs
--- a/src/Nix/NarInfo/Parser.hs
+++ b/src/Nix/NarInfo/Parser.hs
@@ -45,7 +45,7 @@
   deriver     <- optKey "Deriver"
   system      <- optKey "System"
   sig         <- optKey "Sig"
-  ca          <- optKey "Ca"
+  ca          <- optKey "CA"
 
   return $ NarInfo {..}
   where
