Skip to content

Commit 49dcff7

Browse files
committed
Upgrade 3.0.0 alpha version to 3.0.0-beta version
1 parent b56f30e commit 49dcff7

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

sonic-android/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

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

1414
## Implement sonic interface:

sonic-android/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-3.5-all.zip

sonic-android/sample/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ dependencies {
2626
})
2727

2828
// compile sdk from jcenter
29-
compile 'com.tencent.sonic:sdk:3.0.0-alpha'
29+
compile 'com.tencent.sonic:sdk:3.0.0-beta'
3030

3131
// compile sonic-sdk from local path
3232
// compile project(path: ':sdk')

sonic-android/sdk/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ android {
1111
minSdkVersion 9
1212
targetSdkVersion 25
1313
versionCode 3
14-
versionName "3.0.0-alpha"
14+
versionName "3.0.0-beta"
1515

1616
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1717
}
@@ -43,7 +43,7 @@ dependencies {
4343

4444

4545
// sdk info
46-
version = "3.0.0-alpha" // sdk version num
46+
version = "3.0.0-beta" // sdk version num
4747
group = "com.tencent.sonic" // maven group id for the artifact
4848
def SITE_URL = "https://github.com/Tencent/VasSonic" // web site url
4949
def GIT_URL = "https://github.com/Tencent/VasSonic.git" // git url

sonic-iOS/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
[![wiki](https://img.shields.io/badge/Wiki-open-brightgreen.svg)](https://github.com/Tencent/VasSonic/wiki)
55
---
66

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

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

1414
target 'TargetName' do
15-
pod 'VasSonic', '3.0.0-alpha'
15+
pod 'VasSonic', '3.0.0-beta'
1616
end
1717
```
1818

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

2626
target 'TargetName' do
27-
pod 'VasSonic', '3.0.0-alpha'
27+
pod 'VasSonic', '3.0.0-beta'
2828
end
2929
```
3030

0 commit comments

Comments
 (0)