test-certs 0.1.0.3 → 0.1.1.0
raw patch · 3 files changed
+11/−4 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ Test.Certs.Temp: defaultBasenames :: FilePath -> CertPaths
Files
- ChangeLog.md +4/−0
- src/Test/Certs/Temp.hs +6/−3
- test-certs.cabal +1/−1
ChangeLog.md view
@@ -2,6 +2,10 @@ `test-certs` uses [PVP Versioning][1]. +## 0.1.1.0 -- 2024-06-03++* Export defaultBasenames+ ## 0.1.0.3 -- 2024-04-01 * Relax the lower bound on time
src/Test/Certs/Temp.hs view
@@ -27,6 +27,7 @@ , CertPaths (..) , keyPath , certificatePath+ , defaultBasenames ) where @@ -66,9 +67,11 @@ certificatePath cp = cpDir cp </> cpCert cp -{- | A @CertPaths using the default basenames for the certificate files-@cpKey@ is @key.pem@-@cpCert@ is @certificate.pem@+{- | A @CertPaths using some default basenames for the certificate files.++defaults are:+* for 'cpKey', @key.pem@+* for 'cpCert', @certificate.pem@ -} defaultBasenames :: FilePath -> CertPaths defaultBasenames cpDir =
test-certs.cabal view
@@ -1,6 +1,6 @@ cabal-version: 3.0 name: test-certs-version: 0.1.0.3+version: 0.1.1.0 synopsis: create temporary SSL certificates in tests description: Its functions generate the certificates as files in a temporary directory.