Skip to content

Commit 9f5ce67

Browse files
committed
upgrade version from "2.0.0-alpha" to "2.0.0-beta"
1 parent 35e666a commit 9f5ce67

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
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:2.0.0-alpha'
11+
compile 'com.tencent.sonic:sdk:2.0.0-beta'
1212
```
1313

1414
## Implement sonic interface:

sonic-android/docs/Sonic接入指引.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
在模块的build.gradle文件里面加入
55

66
```
7-
compile 'com.tencent.sonic:sdk:2.0.0-alpha'
7+
compile 'com.tencent.sonic:sdk:2.0.0-beta'
88
```
99

1010
## 2.代码接入

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:2.0.0-alpha'
29+
compile 'com.tencent.sonic:sdk:2.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 2
14-
versionName "2.0.0-alpha"
14+
versionName "2.0.0-beta"
1515

1616
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1717

@@ -36,7 +36,7 @@ dependencies {
3636

3737

3838
// sdk info
39-
version = "2.0.0-alpha" // sdk version num
39+
version = "2.0.0-beta" // sdk version num
4040
group = "com.tencent.sonic" // maven group id for the artifact
4141
def SITE_URL = "https://github.com/Tencent/VasSonic" // web site url
4242
def GIT_URL = "https://github.com/Tencent/VasSonic.git" // git url

sonic-iOS/README.md

+2-2
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-
### 2.0.0-alpha support!
7+
### 2.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', '2.0.0-alpha'
15+
pod 'VasSonic', '2.0.0-beta'
1616
end
1717
```
1818

0 commit comments

Comments
 (0)