Skip to content

Commit

Permalink
Release v0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderkiel committed Dec 6, 2018
1 parent d074cf3 commit ae07776
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 0.4
version = 0.5

target/csv-crypt-$(version)-standalone.jar:
lein clean
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ A command line tool which encrypts a CSV file line by line so that it's possible

Download an archive for your OS:

* [Windows](https://github.com/life-research/csv-crypt/releases/download/v0.4/csv-crypt-0.4.zip)
* [Linux](https://github.com/life-research/csv-crypt/releases/download/v0.4/csv-crypt-0.4.tar.gz)
* [Windows](https://github.com/life-research/csv-crypt/releases/download/v0.5/csv-crypt-0.5.zip)
* [Linux](https://github.com/life-research/csv-crypt/releases/download/v0.5/csv-crypt-0.5.tar.gz)

Unpack the archive. It will create a directory called `csv-crypt-0.4`. Open console in this directory and run `csv-crypt`.
Unpack the archive. It will create a directory called `csv-crypt-0.5`. Open console in this directory and run `csv-crypt`.

## Usage

Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject csv-crypt "0.4"
(defproject csv-crypt "0.5"
:description "Line-by-line CSV Encryption Tool"
:url "https://github.com/life-research/csv-crypt"
:license {:name "Eclipse Public License"
Expand Down
2 changes: 1 addition & 1 deletion src/csv_crypt/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
["-h" "--help"]])

(defn print-version []
(println "csv-crypt version 0.4")
(println "csv-crypt version 0.5")
(System/exit 0))

(defn print-help [summary exit]
Expand Down

0 comments on commit ae07776

Please sign in to comment.