Skip to content

Commit

Permalink
Prepare for release (#35)
Browse files Browse the repository at this point in the history
Release 0.2.0
  • Loading branch information
anwzhang authored Feb 5, 2018
1 parent fffe622 commit 0bbe649
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
9 changes: 8 additions & 1 deletion Maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.prebid</groupId>
<artifactId>prebid-mobile-sdk</artifactId>
<version>0.1.0</version>
<version>0.2.0</version>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>1.1</version>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public class Settings {
public static final String deviceModel = Build.MODEL;
public static final String os = "android";
public static String userAgent = null;
public static String sdk_version = "0.1.0";
public static String sdk_version = "0.2.0";
public static String pkgVersion = "";
public static String appName = "";
private static int mnc = -1;
Expand Down
2 changes: 1 addition & 1 deletion PrebidMobile/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
ext {
releaseProguardEnabled = false
debugProguardEnabled = false
prebidVersionName = "0.1.0"
prebidVersionName = "0.2.0"
prebidVersionCode = 1
minSDKVersion = 16
targetSDKVersion = 25
Expand Down
1 change: 1 addition & 0 deletions buildprebid.sh
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ transitive = true
// Build from compiled libs
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'org.apache.commons:commons-text:1.1'
}
EOL
Expand Down

0 comments on commit 0bbe649

Please sign in to comment.