Skip to content

Commit d804c51

Browse files
committed
Merge branch 'release/3.1.0'
2 parents 09f14f1 + 2ee3e60 commit d804c51

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.0.0
2+
current_version = 3.1.0
33
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<release>\w+))?
44
tag = False
55
commit = True

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ script:
2424
- lein launch4j
2525

2626
after_success:
27-
- travis-custom-deploy sftp target/mincer-3.0.0-standalone.jar target/mincer-3.0.0.exe
27+
- travis-custom-deploy sftp target/mincer-3.1.0-standalone.jar target/mincer-3.1.0.exe
2828
env:
2929
global:
3030
- DISPLAY=:99.0

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Mincer supports two usage modes: batch/CLI and GUI modes.
1717
To start the graphical user-interface run the provided jar without arguments:
1818

1919
```
20-
$ java -jar mincer-3.0.0-standalone.jar
20+
$ java -jar mincer-3.1.0-standalone.jar
2121
```
2222

2323
### CLI

config.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<launch4jConfig>
33
<dontWrapJar>false</dontWrapJar>
44
<headerType>gui</headerType>
5-
<jar>target/mincer-3.0.0-standalone.jar</jar>
6-
<outfile>target/mincer-3.0.0.exe</outfile>
5+
<jar>target/mincer-3.1.0-standalone.jar</jar>
6+
<outfile>target/mincer-3.1.0.exe</outfile>
77
<errTitle></errTitle>
88
<priority>normal</priority>
99
<downloadUrl>http://java.com/download</downloadUrl>
@@ -23,15 +23,15 @@
2323
</jre>
2424
<versionInfo>
2525
<fileVersion>0.0.0.1</fileVersion>
26-
<txtFileVersion>3.0.0-dev</txtFileVersion>
26+
<txtFileVersion>3.1.0-dev</txtFileVersion>
2727
<fileDescription>mincer</fileDescription>
2828
<copyright>ISC</copyright>
2929
<productVersion>0.0.0.1</productVersion>
30-
<txtProductVersion>3.0.0-dev</txtProductVersion>
30+
<txtProductVersion>3.1.0-dev</txtProductVersion>
3131
<productName>mincer</productName>
3232
<companyName></companyName>
3333
<internalName>mincer</internalName>
34-
<originalFilename>mincer-3.0.0.exe</originalFilename>
34+
<originalFilename>mincer-3.1.0.exe</originalFilename>
3535
</versionInfo>
3636
<messages>
3737
<startupErr>Startup Error</startupErr>

project.clj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
(defproject mincer "3.0.0"
1+
(defproject mincer "3.1.0"
22
:description "Tool to create a SQLite database from PlüS module tree and data XML files."
33
:url "https://github.com/plues/mincer"
44
:license {:name "Eclipse Public License"
55
:url "http://www.eclipse.org/legal/epl-v10.html"}
66
:dependencies [[org.clojure/clojure "1.8.0"]
7-
[org.clojure/java.jdbc "0.6.1"]
7+
[org.clojure/java.jdbc "0.7.0"]
88
[org.clojure/math.combinatorics "0.1.4"]
99
[org.clojure/test.check "0.9.0"]
1010
[org.clojure/tools.cli "0.3.5"]
1111
[org.clojure/tools.logging "0.4.0"]
1212
[org.slf4j/slf4j-log4j12 "1.7.25"]
13-
[org.xerial/sqlite-jdbc "3.18.0"]
13+
[org.xerial/sqlite-jdbc "3.19.3"]
1414
[seesaw "1.4.5"]]
1515
:plugins [[jonase/eastwood "0.2.3"]
1616
[lein-kibit "0.1.2"]

src/mincer/db.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[clojure.java.jdbc :refer [with-db-transaction]]
66
[clojure.tools.logging :as log]))
77

8-
(def mincer-version "3.0.0") ; updated with bumpversion
8+
(def mincer-version "3.1.0") ; updated with bumpversion
99

1010
(defn now [] (new java.util.Date))
1111

src/mincer/ui.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@
161161
(let [lbl-mincer (label ::mincer)
162162
lbl-icon (label :icon logo)
163163
lbl-file-select (label ::file-select)
164-
lbl-version (label "3.0.0") ; managed by bumpversion
164+
lbl-version (label "3.1.0") ; managed by bumpversion
165165
lbl-save (label ::save)]
166166
(doall (map #(config! % :border 10) [lbl-mincer lbl-file-select lbl-version lbl-icon]))
167167
(config! lbl-save :halign :center)

0 commit comments

Comments
 (0)