Skip to content

Commit

Permalink
Prepare for release 0.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jschnasse committed Dec 18, 2020
1 parent 2b02f04 commit 25839ca
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ can be fixed easily with existing tools like `sed`,`grep` and `awk`.
# Test Install

```
wget https://dl.bintray.com/jschnasse/debian/oi_0.4.3.deb
sudo apt install ./oi_0.4.3.deb #depends on openjdk-11-jre
wget https://dl.bintray.com/jschnasse/debian/oi_0.4.4.deb
sudo apt install ./oi_0.4.4.deb #depends on openjdk-11-jre
```
# Keep up to date

Expand Down
2 changes: 1 addition & 1 deletion VERSIONS
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
oi_version=0.4.3
oi_version=0.4.4
lscsv_version=0.1
libprocname_version=0.1
11 changes: 11 additions & 0 deletions deb/oi_0.4.4/DEBIAN/control
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Section: tools
Priority: optional
Homepage: https://github.com/jschnasse/oi
Standards-Version: 3.9.2
Package: oi
Version: 0.4.4
Maintainer: Jan Schnasse <[email protected]>
Depends: openjdk-11-jre
Architecture: all
Description: convert csv,yml,json and rdf
Copyright: Jan Schnasse, EPL v2.0
2 changes: 1 addition & 1 deletion man/oi/man.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= oi(1)
Jan Schnasse
v0.4.3
v0.4.4
:doctype: manpage
:manmanual: OI
:mansource: OI
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/schnasse/oi/main/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import picocli.CommandLine.Option;
import picocli.CommandLine.Parameters;

@Command(name = "oi", mixinStandardHelpOptions = true, version = "oi 0.4.3", description = "Converts yaml,json,xml,rdf to each other.")
@Command(name = "oi", mixinStandardHelpOptions = true, version = "oi 0.4.4", description = "Converts yaml,json,xml,rdf to each other.")
public class Main implements Callable<Integer> {
private static final ch.qos.logback.classic.Logger logger = (ch.qos.logback.classic.Logger) org.slf4j.LoggerFactory
.getLogger(Main.class);
Expand Down

0 comments on commit 25839ca

Please sign in to comment.