Skip to content

Commit

Permalink
0.8.4 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
danf committed Apr 27, 2016
1 parent 20f88e3 commit d2fe1fc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ allprojects {

publish {
repository {
repoKey = 'oss-snapshot-local' //The Artifactory repository key to publish to
repoKey = 'oss-release-local' //The Artifactory repository key to publish to
username = project.hasProperty('bintrayUser') ? project.bintrayUser : getenv()['BINTRAY_USER']
password = project.hasProperty('bintrayKey') ? project.bintrayKey : getenv()['BINTRAY_KEY']
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=0.8.4-SNAPSHOT
version=0.8.4
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class BintrayClient {

public static final int DEFAULT_TIMEOUT = 150000;
public static final String BINTRAY_API_URL = "https://api.bintray.com";
public static final String USER_AGENT = "BintrayJavaClient/0.8.3"; // TODO: make dynamic
public static final String USER_AGENT = "BintrayJavaClient/0.8.4"; // TODO: make dynamic
private static final int DEFAULT_THREAD_POOL_SIZE = 5; //Don't mess with this - its here for a reason
private static final int DEFAULT_SIGN_REQUEST_TIMEOUT_PER_FILE = 90000; //1.5 min per file

Expand Down

0 comments on commit d2fe1fc

Please sign in to comment.