Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: parse-community/Parse-SDK-Android
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.15.2
Choose a base ref
...
head repository: parse-community/Parse-SDK-Android
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.15.3
Choose a head ref
  • 5 commits
  • 3 files changed
  • 1 contributor

Commits on Apr 27, 2017

  1. Fix bintray config

    rogerhu committed Apr 27, 2017
    Copy the full SHA
    d74633c View commit details

Commits on Apr 28, 2017

  1. Fix Bintray

    rogerhu committed Apr 28, 2017
    Copy the full SHA
    bb37a1e View commit details
  2. Update to SNAPSHOT

    rogerhu committed Apr 28, 2017
    Copy the full SHA
    c650b2c View commit details

Commits on Apr 29, 2017

  1. Copy the full SHA
    6f9060a View commit details
  2. Bump to 1.15.3

    rogerhu committed Apr 29, 2017
    Copy the full SHA
    7821ea3 View commit details
Showing with 14 additions and 9 deletions.
  1. +12 −7 Parse/build.gradle
  2. +1 −1 Parse/src/main/java/com/parse/ParseObject.java
  3. +1 −1 README.md
19 changes: 12 additions & 7 deletions Parse/build.gradle
Original file line number Diff line number Diff line change
@@ -5,13 +5,13 @@ apply plugin: 'com.github.kt3k.coveralls'
apply plugin: 'com.jfrog.bintray'

group = 'com.parse'
version = '1.15.2'
version = '1.15.3'

ext {
projDescription = 'A library that gives you access to the powerful Parse cloud platform from your Android app.'
artifact = 'parse-android'
projName = 'Parse-Android'
gitLink = 'https://github.com/ParsePlatform/Parse-SDK-Android'
gitLink = 'https://github.com/parse-community/Parse-SDK-Android'
}
buildscript {
repositories {
@@ -229,18 +229,20 @@ coveralls.jacocoReportPath = "${buildDir}/reports/jacoco/jacocoTestReport/jacoco
bintray {
user = System.getenv('BINTRAY_USER')
key = System.getenv('BINTRAY_API_KEY')

publications = ["MyPublication"]

pkg {
repo = 'maven'
name = 'com.parse:parse-android'
userOrg = 'parse'
licenses = ['BSD License']
vcsUrl = 'https://github.com/ParsePlatform/Parse-SDK-Android'

vcsUrl = 'https://github.com/parse-community/Parse-SDK-Android'
version {
name = version
name = project.version
desc = projDescription
released = new Date()
vcsTag = version
vcsTag = project.version
}
}
}
@@ -269,16 +271,19 @@ publishing {
publications {
MyPublication(MavenPublication) {
groupId group
// We have to specify it here because otherwise Bintray's plugin will assume the artifact's name is Parse
artifactId artifact
artifacts = [androidSourcesJar, bundleRelease]
version version
pom.withXml {
def root = asNode()
root.appendNode('description', desc)
root.appendNode('description', projDescription)
root.appendNode('name', projName)
root.appendNode('url', gitLink)
root.children().last() + pomConfig
}
}
}
}

// End of Bintray plugin
2 changes: 1 addition & 1 deletion Parse/src/main/java/com/parse/ParseObject.java
Original file line number Diff line number Diff line change
@@ -53,7 +53,7 @@
*/
public class ParseObject implements Parcelable {
private static final String AUTO_CLASS_NAME = "_Automatic";
/* package */ static final String VERSION_NAME = "1.15.2";
/* package */ static final String VERSION_NAME = "1.15.3";
private static final String TAG = "ParseObject";

/*
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ Download [the latest JAR][latest] or define in Gradle:

```groovy
dependencies {
compile 'com.parse:parse-android:1.15.2'
compile 'com.parse:parse-android:1.15.3'
}
```