diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+# 0.2.3.0
+
+  * Add `archiveSigVersion` function
+
 # 0.2.2.0
 
   * Add `versionInfo` to `Archive` signature
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright Vanessa McHale (c) 2019
+Copyright Vanessa McHale (c) 2019-2020
 
 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
 
diff --git a/archive-sig.cabal b/archive-sig.cabal
--- a/archive-sig.cabal
+++ b/archive-sig.cabal
@@ -1,9 +1,9 @@
 cabal-version:   2.0
 name:            archive-sig
-version:         0.2.2.0
+version:         0.2.3.0
 license:         BSD3
 license-file:    LICENSE
-copyright:       Copyright: (c) 2019 Vanessa McHale
+copyright:       Copyright: (c) 2019-2020 Vanessa McHale
 maintainer:      vamchale@gmail.com
 author:          Vanessa McHale
 synopsis:        Backpack signature for archive libraries
@@ -31,6 +31,8 @@
 
     signatures:       Archive
     hs-source-dirs:   src
+    other-modules:    Paths_archive_sig
+    autogen-modules:  Paths_archive_sig
     default-language: Haskell2010
     ghc-options:      -Wall
     build-depends:
diff --git a/src/Archive.hsig b/src/Archive.hsig
--- a/src/Archive.hsig
+++ b/src/Archive.hsig
@@ -25,4 +25,5 @@
 
 writeArchiveBytes :: [Entry] -> BSL.ByteString
 
+-- | @since 0.2.2.0
 versionInfo :: String
diff --git a/src/Archive/Generic.hs b/src/Archive/Generic.hs
--- a/src/Archive/Generic.hs
+++ b/src/Archive/Generic.hs
@@ -2,6 +2,7 @@
                        , unpackFileToDir
                        , unpackFromFile
                        , packToFile
+                       , archiveSigVersion
                        , packFromFiles
                        ) where
 
@@ -9,6 +10,12 @@
 import           Archive.Compression
 import           Control.Composition  ((.@))
 import qualified Data.ByteString.Lazy as BSL
+import qualified Data.Version         as V
+import qualified Paths_archive_sig    as P
+
+-- | @since 0.2.3.0
+archiveSigVersion :: V.Version
+archiveSigVersion = P.version
 
 packFromFiles :: FilePath -- ^ Path of @.tar@ file to write
               -> [FilePath] -- ^ Files and directories to archive
