crypto-token 0.1.0 → 0.1.1
raw patch · 2 files changed
+4/−4 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Crypto/Token.hs +3/−3
- crypto-token.cabal +1/−1
Crypto/Token.hs view
@@ -51,15 +51,15 @@ } deriving (Eq, Show) --- | Default configuration to update secrets in 30 minutes (1,800 seconds) and token liefetime is 1 day (86,400 seconds)+-- | Default configuration to update secrets in 30 minutes (1,800 seconds) and token lifetime is 2 hours (7,200 seconds) -- -- >>> defaultConfig--- Config {interval = 1800, maxEntries = 86400}+-- Config {interval = 1800, tokenLifetime = 7200} defaultConfig :: Config defaultConfig = Config { interval = 1800- , tokenLifetime = 86400+ , tokenLifetime = 7200 } ----------------------------------------------------------------
crypto-token.cabal view
@@ -1,6 +1,6 @@ cabal-version: >=1.10 name: crypto-token-version: 0.1.0+version: 0.1.1 license: BSD3 license-file: LICENSE maintainer: Kazu Yamamoto <kazu@iij.ad.jp>