Skip to content
This repository has been archived by the owner on Sep 22, 2021. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/v0.2.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
jkawamoto committed Jul 1, 2018
2 parents b1dfd13 + 9ab3be5 commit 2b91e3d
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.3
current_version = 0.2.4
commit = True
tag = False

Expand Down
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: java
env:
global:
- SIA_VERSION=1.3.2
- SIA_VERSION=1.3.3
script:
- gradle test --info
after_success:
Expand All @@ -24,9 +24,9 @@ deploy:
secure: bu664xqdPaj+6JomOZJ7ivzIaDrGZXySCApcAYO7AIwBY0KlkbFO/zY/kYb7XRu7DfNYqDM9i2gGsdqneTDlvjg8NmxkpviKjrPMG8Fp8sjQK544ae4kpptMFc9d0eC+z5lv1WjrK9Jzq7Mnv0SKAcdtGguoGkUN1xE3PqK3wmvz7xKSAWSZZM3e5lw9AbBgShQTBfAV3qkE06Ga34Al72mqJ7BS3ZscxnJiLMW+jhlAGE+t+GybE53+QLgMJje2RU6gRJagi+IIem93uQuGAdZ6+eYrd4yqxEQyZpBIQz9kJs6P+WqC4yk46cmEBUZEYA/U8vxPOd7e8UawtOSfBMODvJKLAZoB/GKWXm9u0i0C906DEBZPSMMTVe3Pq1pO4smqiv8aC5cTCxsM3MXqsl1yssnhFX/HDJgu+QAqEoXmXNLUF4OV/1tIdveJXXjvGHOGUhTbC65d0qHA7alSUhql/IQ9Ha7QtSMFKVf3Re8U2IWr9VYfOhgGDw9e3cdARkDwZo+xk7moIfr4XGUMpOWRowZ+i0jZK2rE720T6TvsTjW95G9lXiUkViVex+vbiv/CwXak/msG5P/mkPxu8DACRltdquqAyyVZTZL94HOaL8Ra4g8GjyNOWmQujv4GgPltd0ZjCoEZh6IQ/qiyozRtonLgEwRMNzs7+wz5JOE=
skip_cleanup: true
file:
- build/distributions/goobox-sync-sia-0.2.3-linux.tar.gz
- build/distributions/goobox-sync-sia-0.2.3-mac.tar.gz
- build/distributions/goobox-sync-sia-0.2.3-win64.tar.gz
- build/distributions/goobox-sync-sia-0.2.4-linux.tar.gz
- build/distributions/goobox-sync-sia-0.2.4-mac.tar.gz
- build/distributions/goobox-sync-sia-0.2.4-win64.tar.gz
on:
tags: true
repo: GooBox/goobox-sync-sia
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# goobox-sync-sia
[![Build Status](https://travis-ci.org/GooBox/goobox-sync-sia.svg?branch=master)](https://travis-ci.org/GooBox/goobox-sync-sia)
[![Build status](https://ci.appveyor.com/api/projects/status/j4lv9lnd07o1qe5n/branch/master?svg=true)](https://ci.appveyor.com/project/jkawamoto/goobox-sync-sia/branch/master)
[![Release](https://img.shields.io/badge/release-0.2.3-brightgreen.svg)](https://github.com/GooBox/goobox-sync-sia/releases/tag/v0.2.3)
[![Release](https://img.shields.io/badge/release-0.2.4-brightgreen.svg)](https://github.com/GooBox/goobox-sync-sia/releases/tag/v0.2.4)
[![GPLv3](https://img.shields.io/badge/license-GPLv3-blue.svg)](https://www.gnu.org/copyleft/gpl.html)

sync app for [sia](https://sia.tech/).
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ apply plugin: 'application'
apply plugin: 'idea'
apply plugin: "com.github.kt3k.coveralls"

version = '0.2.3'
version = '0.2.4'
mainClassName = 'io.goobox.sync.sia.App'
applicationDefaultJvmArgs = ["-Dlogback.statusListenerClass=ch.qos.logback.core.status.NopStatusListener"]

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@
</dependency>
</dependencies>
<properties>
<project-version>0.2.3</project-version>
<project-version>0.2.4</project-version>
<java.version>1.7</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/goobox/sync/sia/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public final class App implements Callable<Integer>, OverlayIconProvider {
/**
* Version information.
*/
public static final String Version = "0.2.3";
public static final String Version = "0.2.4";

/**
* The number of the minimum required contracts.
Expand Down

0 comments on commit 2b91e3d

Please sign in to comment.