Skip to content

Commit afab152

Browse files
author
danf
committed
0.9.1 Release
1 parent 3870dae commit afab152

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ allprojects {
2727

2828
publish {
2929
repository {
30-
repoKey = 'oss-snapshot-local' //The Artifactory repository key to publish to
30+
repoKey = 'oss-release-local' //The Artifactory repository key to publish to
3131
username = project.hasProperty('bintrayUser') ? project.bintrayUser : getenv()['BINTRAY_USER']
3232
password = project.hasProperty('bintrayKey') ? project.bintrayKey : getenv()['BINTRAY_KEY']
3333
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=0.9.1-SNAPSHOT
1+
version=0.9.1

impl/src/main/java/com/jfrog/bintray/client/impl/BintrayClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public class BintrayClient {
1616

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

0 commit comments

Comments
 (0)