File tree 7 files changed +13
-13
lines changed
7 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 3.0 .0
2
+ current_version = 3.1 .0
3
3
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<release>\w+))?
4
4
tag = False
5
5
commit = True
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ script:
24
24
- lein launch4j
25
25
26
26
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
28
28
env :
29
29
global :
30
30
- DISPLAY=:99.0
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Mincer supports two usage modes: batch/CLI and GUI modes.
17
17
To start the graphical user-interface run the provided jar without arguments:
18
18
19
19
```
20
- $ java -jar mincer-3.0 .0-standalone.jar
20
+ $ java -jar mincer-3.1 .0-standalone.jar
21
21
```
22
22
23
23
### CLI
Original file line number Diff line number Diff line change 2
2
<launch4jConfig >
3
3
<dontWrapJar >false</dontWrapJar >
4
4
<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 >
7
7
<errTitle ></errTitle >
8
8
<priority >normal</priority >
9
9
<downloadUrl >http://java.com/download</downloadUrl >
23
23
</jre >
24
24
<versionInfo >
25
25
<fileVersion >0.0.0.1</fileVersion >
26
- <txtFileVersion >3.0 .0-dev</txtFileVersion >
26
+ <txtFileVersion >3.1 .0-dev</txtFileVersion >
27
27
<fileDescription >mincer</fileDescription >
28
28
<copyright >ISC</copyright >
29
29
<productVersion >0.0.0.1</productVersion >
30
- <txtProductVersion >3.0 .0-dev</txtProductVersion >
30
+ <txtProductVersion >3.1 .0-dev</txtProductVersion >
31
31
<productName >mincer</productName >
32
32
<companyName ></companyName >
33
33
<internalName >mincer</internalName >
34
- <originalFilename >mincer-3.0 .0.exe</originalFilename >
34
+ <originalFilename >mincer-3.1 .0.exe</originalFilename >
35
35
</versionInfo >
36
36
<messages >
37
37
<startupErr >Startup Error</startupErr >
Original file line number Diff line number Diff line change 1
- (defproject mincer " 3.0 .0"
1
+ (defproject mincer " 3.1 .0"
2
2
:description " Tool to create a SQLite database from PlüS module tree and data XML files."
3
3
:url " https://github.com/plues/mincer"
4
4
:license {:name " Eclipse Public License"
5
5
:url " http://www.eclipse.org/legal/epl-v10.html" }
6
6
:dependencies [[org.clojure/clojure " 1.8.0" ]
7
- [org.clojure/java.jdbc " 0.6.1 " ]
7
+ [org.clojure/java.jdbc " 0.7.0 " ]
8
8
[org.clojure/math.combinatorics " 0.1.4" ]
9
9
[org.clojure/test.check " 0.9.0" ]
10
10
[org.clojure/tools.cli " 0.3.5" ]
11
11
[org.clojure/tools.logging " 0.4.0" ]
12
12
[org.slf4j/slf4j-log4j12 " 1.7.25" ]
13
- [org.xerial/sqlite-jdbc " 3.18.0 " ]
13
+ [org.xerial/sqlite-jdbc " 3.19.3 " ]
14
14
[seesaw " 1.4.5" ]]
15
15
:plugins [[jonase/eastwood " 0.2.3" ]
16
16
[lein-kibit " 0.1.2" ]
Original file line number Diff line number Diff line change 5
5
[clojure.java.jdbc :refer [with-db-transaction]]
6
6
[clojure.tools.logging :as log]))
7
7
8
- (def mincer-version " 3.0 .0" ) ; updated with bumpversion
8
+ (def mincer-version " 3.1 .0" ) ; updated with bumpversion
9
9
10
10
(defn now [] (new java.util.Date))
11
11
Original file line number Diff line number Diff line change 161
161
(let [lbl-mincer (label ::mincer )
162
162
lbl-icon (label :icon logo)
163
163
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
165
165
lbl-save (label ::save )]
166
166
(doall (map #(config! % :border 10 ) [lbl-mincer lbl-file-select lbl-version lbl-icon]))
167
167
(config! lbl-save :halign :center )
You can’t perform that action at this time.
0 commit comments