Skip to content

Commit

Permalink
Bump to 1.15.4-SNAPSHOT
Browse files Browse the repository at this point in the history
Use BuildConfig.VERSION_NAME so we don't need to update ParseObject all the time
  • Loading branch information
rogerhu committed Apr 30, 2017
1 parent b15f255 commit 1983eee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Parse/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ apply plugin: 'com.github.kt3k.coveralls'
apply plugin: 'com.jfrog.bintray'

group = 'com.parse'
version = '1.15.3'
version = '1.15.4-SNAPSHOT'

ext {
projDescription = 'A library that gives you access to the powerful Parse cloud platform from your Android app.'
Expand Down
2 changes: 1 addition & 1 deletion Parse/src/main/java/com/parse/ParseObject.java
Original file line number Diff line number Diff line change
Expand Up @@ -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.3";
/* package */ static final String VERSION_NAME = BuildConfig.VERSION_NAME;
private static final String TAG = "ParseObject";

/*
Expand Down

0 comments on commit 1983eee

Please sign in to comment.