Prepare release (Fix cabal etc.)
parent
12b886ad31
commit
fb25b564ff
|
@ -1,5 +1,5 @@
|
||||||
# Revision history for cmdparse-applicative
|
# Revision history for cmdparse-applicative
|
||||||
|
|
||||||
## 0.1.0.0 -- YYYY-mm-dd
|
## 1.2.0.0 -- May 2017
|
||||||
|
|
||||||
* First version. Released on an unsuspecting world.
|
* First version. Released on an unsuspecting world.
|
||||||
|
|
|
@ -1,20 +1,29 @@
|
||||||
name: butcher
|
name: butcher
|
||||||
version: 1.0.0.0
|
version: 1.1.0.0
|
||||||
-- synopsis:
|
|
||||||
-- description:
|
|
||||||
license: BSD3
|
license: BSD3
|
||||||
license-file: LICENSE
|
license-file: LICENSE
|
||||||
author: Lennart Spitzner
|
author: Lennart Spitzner
|
||||||
maintainer: lsp@informatik.uni-kiel.de
|
maintainer: lsp@informatik.uni-kiel.de
|
||||||
-- copyright:
|
copyright: Copyright (C) 2016-2017 Lennart Spitzner
|
||||||
-- category:
|
category: UI
|
||||||
build-type: Simple
|
build-type: Simple
|
||||||
|
synopsis: Chops a command or program invocation into digestable pieces.
|
||||||
|
description: See the README.
|
||||||
|
Stability: experimental
|
||||||
|
|
||||||
extra-source-files: {
|
extra-source-files: {
|
||||||
ChangeLog.md
|
ChangeLog.md
|
||||||
srcinc/prelude.inc
|
srcinc/prelude.inc
|
||||||
|
README.md
|
||||||
}
|
}
|
||||||
|
|
||||||
cabal-version: >=1.10
|
cabal-version: >=1.10
|
||||||
|
|
||||||
|
source-repository head {
|
||||||
|
type: git
|
||||||
|
location: git@github.com:lspitzner/butcher.git
|
||||||
|
}
|
||||||
|
|
||||||
flag butcher-dev
|
flag butcher-dev
|
||||||
description: dev options
|
description: dev options
|
||||||
default: False
|
default: False
|
||||||
|
@ -31,8 +40,6 @@ library
|
||||||
UI.Butcher.Monadic.BuiltinCommands
|
UI.Butcher.Monadic.BuiltinCommands
|
||||||
other-modules: UI.Butcher.Monadic.Internal.Types
|
other-modules: UI.Butcher.Monadic.Internal.Types
|
||||||
UI.Butcher.Monadic.Internal.Core
|
UI.Butcher.Monadic.Internal.Core
|
||||||
-- other-modules:
|
|
||||||
-- other-extensions:
|
|
||||||
build-depends:
|
build-depends:
|
||||||
{ base >=4.8 && <4.10
|
{ base >=4.8 && <4.10
|
||||||
, free
|
, free
|
||||||
|
|
|
@ -24,7 +24,7 @@ checks:
|
||||||
- compiler: "ghc"
|
- compiler: "ghc"
|
||||||
version: "7.10.3"
|
version: "7.10.3"
|
||||||
- compiler: "ghc"
|
- compiler: "ghc"
|
||||||
version: "8.0.1"
|
version: "8.0.2"
|
||||||
compilers-help: |
|
compilers-help: |
|
||||||
for this to work, cabal will need the paths to the actual
|
for this to work, cabal will need the paths to the actual
|
||||||
compilers to be configured; see the note about the user-global
|
compilers to be configured; see the note about the user-global
|
||||||
|
@ -77,6 +77,7 @@ repository:
|
||||||
display-current-branch: True
|
display-current-branch: True
|
||||||
push-remote:
|
push-remote:
|
||||||
enabled: True
|
enabled: True
|
||||||
|
remote-name: lspitzner
|
||||||
remote-name-help: |
|
remote-name-help: |
|
||||||
the "remote" configured in git to push the release/tag to.
|
the "remote" configured in git to push the release/tag to.
|
||||||
remote-name: "origin"
|
remote-name: "origin"
|
||||||
|
|
Loading…
Reference in New Issue