Skip to content

Commit

Permalink
bump to v1.0.40
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Feb 1, 2020
1 parent 808d938 commit 68dba3c
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/AndroidClient/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'

version = "1.0.39"
version = "1.0.40"

dependencies {
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
Expand Down
2 changes: 1 addition & 1 deletion src/AndroidClient/androidchat/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ dependencies {
implementation project(':android')
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'net.servicestack:android:1.0.39'
implementation 'net.servicestack:android:1.0.40'
implementation 'com.facebook.android:facebook-android-sdk:4.31.0'
implementation('com.twitter.sdk.android:twitter:2.3.1@aar') {
transitive = true;
Expand Down
2 changes: 1 addition & 1 deletion src/AndroidClient/client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'maven'

version = "1.0.39"
version = "1.0.40"

dependencies {
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
Expand Down
2 changes: 1 addition & 1 deletion src/AndroidClient/client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.servicestack</groupId>
<artifactId>client</artifactId>
<version>1.0.39</version>
<version>1.0.40</version>
<name>ServiceStack.Client</name>
<description>A client library to call your ServiceStack webservices.</description>
<url>https://github.com/ServiceStack/ServiceStack.Java</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class AddReferenceWizard extends Wizard {
boolean packageSelected = false;

private static final String dependencyGroupId = "net.servicestack";
private static final String dependencyVersion = "1.0.39";
private static final String dependencyVersion = "1.0.40";
private static final String clientPackageId = "client";

private static final String gsonDependencyGroupId = "com.google.code.gson";
Expand Down
8 changes: 5 additions & 3 deletions src/ServiceStackIDEA/.idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/ServiceStackIDEA/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id "org.jetbrains.intellij" version "0.4.15"
}
version = '1.0.39'
version = '1.0.40'

apply plugin: 'org.jetbrains.intellij'
dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ public class DepConfig {
public static final String androidPackageId = "android";
//Fallback version of dependencies if GitHub tags can't be checked.
public static final String clientPackageId = "client";
public static String servicestackVersion = "1.0.39";
public static String servicestackVersion = "1.0.40";

public static final String gsonGroupId = "com.google.code.gson";
public static final String gsonPackageId = "gson";
Expand Down

0 comments on commit 68dba3c

Please sign in to comment.