Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanielWroblewski committed Jun 17, 2020
1 parent f3a791c commit 89ee917
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ your `build.gradle`:

```groovy
dependencies {
compile 'com.kissmetrics.sdk:KISSmetricsSDK:2.2.2'
compile 'com.kissmetrics.sdk:KISSmetricsSDK:2.3.0'
}
```

Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
classpath 'com.github.dcendents:android-maven-plugin:1.2'
}

version '2.2.2'
version '2.3.0'
group 'com.kissmetrics.sdk'
}

Expand All @@ -22,7 +22,7 @@ android {
defaultConfig {
minSdkVersion 8
targetSdkVersion 22
versionCode 3
versionCode 4
versionName project.version
}

Expand Down Expand Up @@ -103,4 +103,4 @@ task sourcesJar(type: Jar) {
task javadocsJar(type: Jar, dependsOn: javadocs) {
classifier 'javadoc'
from "${project.buildDir}/docs/javadoc"
}
}
6 changes: 3 additions & 3 deletions releasing.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ to do a little more work. First generate the pom file:
gradle install
```

The `KISSmetricsSDK-2.2.2.pom` file will be placed under
The `KISSmetricsSDK-2.3.0.pom` file will be placed under
`~/.m2/repository/com/kissmetrics/sdk/KISSmetricsSDK/$VERSION` where `$VERSION` is
the new version number (i.e. 2.2.2).
the new version number (i.e. 2.3.0).

Create a new version of the package in Bintray. Upload the files in Step 4 and
`KISSmetricsSDK-2.2.2.pom` to Bintray.
`KISSmetricsSDK-2.3.0.pom` to Bintray.
2 changes: 1 addition & 1 deletion src/main/java/com/kissmetrics/sdk/Connection.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* Connection interface
*/
interface Connection {
public static final String USER_AGENT = "KISSmetrics-Android/2.2.2";
public static final String USER_AGENT = "KISSmetrics-Android/2.3.0";

/**
* Makes a request to the provided API query urlString.
Expand Down

0 comments on commit 89ee917

Please sign in to comment.