Skip to content

Commit

Permalink
Upgrade 3.0.0 alpha version to 3.0.0-beta version
Browse files Browse the repository at this point in the history
  • Loading branch information
marlonlu committed Feb 9, 2018
1 parent b56f30e commit 49dcff7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion sonic-android/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Add VasSonic gradle plugin as a dependency in your module's build.gradle
```gradle
compile 'com.tencent.sonic:sdk:3.0.0-alpha'
compile 'com.tencent.sonic:sdk:3.0.0-beta'
```

## Implement sonic interface:
Expand Down
2 changes: 1 addition & 1 deletion sonic-android/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-3.5-all.zip
2 changes: 1 addition & 1 deletion sonic-android/sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies {
})

// compile sdk from jcenter
compile 'com.tencent.sonic:sdk:3.0.0-alpha'
compile 'com.tencent.sonic:sdk:3.0.0-beta'

// compile sonic-sdk from local path
// compile project(path: ':sdk')
Expand Down
4 changes: 2 additions & 2 deletions sonic-android/sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ android {
minSdkVersion 9
targetSdkVersion 25
versionCode 3
versionName "3.0.0-alpha"
versionName "3.0.0-beta"

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
Expand Down Expand Up @@ -43,7 +43,7 @@ dependencies {


// sdk info
version = "3.0.0-alpha" // sdk version num
version = "3.0.0-beta" // sdk version num
group = "com.tencent.sonic" // maven group id for the artifact
def SITE_URL = "https://github.com/Tencent/VasSonic" // web site url
def GIT_URL = "https://github.com/Tencent/VasSonic.git" // git url
Expand Down
6 changes: 3 additions & 3 deletions sonic-iOS/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
[![wiki](https://img.shields.io/badge/Wiki-open-brightgreen.svg)](https://github.com/Tencent/VasSonic/wiki)
---

### 3.0.0-alpha support!
### 3.0.0-beta support!
To integrate VasSonic into your Xcode project using CocoaPods, specify it in your Podfile:

```lua
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'

target 'TargetName' do
pod 'VasSonic', '3.0.0-alpha'
pod 'VasSonic', '3.0.0-beta'
end
```

Expand All @@ -24,7 +24,7 @@ source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'

target 'TargetName' do
pod 'VasSonic', '3.0.0-alpha'
pod 'VasSonic', '3.0.0-beta'
end
```

Expand Down

0 comments on commit 49dcff7

Please sign in to comment.