Skip to content

Commit

Permalink
Added changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
roelvandijk committed Jun 15, 2019
1 parent a15bca0 commit 71cd12e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 1 deletion.
11 changes: 11 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
### 0.4.1

* Added styleOnComplete field to Style record. Defaults to
WriteNewLine. Gives the ability to clear the progress bar once
finished.

* Added this changelog.

#### 0.4.0.2

* Improved documentation
1 change: 1 addition & 0 deletions lib/changelog.md
2 changes: 1 addition & 1 deletion lib/terminal-progress-bar.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ description:
it as something else than \"move cursor to beginning of line\", the
animation won't work.

extra-source-files: LICENSE, README.markdown
extra-source-files: LICENSE, README.markdown, changelog.md

source-repository head
type: git
Expand Down
2 changes: 2 additions & 0 deletions overlay.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ final : previous : with final.haskell.lib; {
let src = previous.runCommand "terminal-progress-bar-src" {
lib = ./lib;
LICENSE = ./LICENSE;
CHANGELOG = ./changelog.md;
} ''
mkdir -p $out
cp -r $lib/src $out/src
cp -r $lib/test $out/test
cp -r $lib/bench $out/bench
cp $LICENSE $out/LICENSE
cp $CHANGELOG $out/CHANGELOG
cp $lib/terminal-progress-bar.cabal $out
'';
in doBenchmark (super.callCabal2nix "terminal-progress-bar" src {});
Expand Down

0 comments on commit 71cd12e

Please sign in to comment.