mirror of
https://github.com/redelmann/scat
synced 2025-01-09 22:24:19 +01:00
Version bump, with breaking API change, due to:
- parameters being asked in a slightly different order, - the 32-bit version now correctly generating passwords involving shuffles.
This commit is contained in:
parent
b94c4fc159
commit
b80817a40b
18
scat.cabal
18
scat.cabal
@ -1,16 +1,16 @@
|
||||
-- Initial scat.cabal generated by cabal init. For further documentation,
|
||||
-- Initial scat.cabal generated by cabal init. For further documentation,
|
||||
-- see http://haskell.org/cabal/users-guide/
|
||||
|
||||
-- The name of the package.
|
||||
name: scat
|
||||
|
||||
-- The package version. See the Haskell package versioning policy (PVP)
|
||||
-- The package version. See the Haskell package versioning policy (PVP)
|
||||
-- for standards guiding when and how versions should be incremented.
|
||||
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
|
||||
-- PVP summary: +-+------- breaking API changes
|
||||
-- | | +----- non-breaking API additions
|
||||
-- | | | +--- code changes with no API change
|
||||
version: 1.0.2.1
|
||||
version: 1.1.0.0
|
||||
|
||||
-- A short (one-line) description of the package.
|
||||
synopsis: Generates unique passwords for various websites from a single password.
|
||||
@ -27,7 +27,7 @@ license-file: LICENSE
|
||||
-- The package author(s).
|
||||
author: Romain Edelmann
|
||||
|
||||
-- An email address to which users can send suggestions, bug reports, and
|
||||
-- An email address to which users can send suggestions, bug reports, and
|
||||
-- patches.
|
||||
maintainer: romain.edelmann@gmail.com
|
||||
|
||||
@ -38,7 +38,7 @@ bug-reports: https://github.com/redelmann/scat/issues
|
||||
stability: experimental
|
||||
|
||||
-- A copyright notice.
|
||||
-- copyright:
|
||||
-- copyright:
|
||||
|
||||
category: Password
|
||||
|
||||
@ -49,7 +49,7 @@ cabal-version: >=1.8
|
||||
|
||||
data-dir: lists
|
||||
|
||||
data-files: *.txt
|
||||
data-files: *.txt
|
||||
|
||||
source-repository head
|
||||
type: git
|
||||
@ -59,13 +59,13 @@ executable scat
|
||||
-- .hs or .lhs file containing the Main module.
|
||||
main-is: Scat.hs
|
||||
|
||||
ghc-options: -Wall -O3
|
||||
|
||||
ghc-options: -Wall -O3
|
||||
|
||||
hs-source-dirs: src
|
||||
|
||||
-- Modules included in this executable, other than Main.
|
||||
other-modules: Scat.Builder, Scat.Schemas, Scat.Options, Scat.Utils.Permutation, Paths_scat
|
||||
|
||||
|
||||
-- Other library packages from which modules are imported.
|
||||
build-depends: base >=4.5 && <5
|
||||
, scrypt == 0.5.*
|
||||
|
Loading…
Reference in New Issue
Block a user