Skip to content

Commit 628a61b

Browse files
committed
Upgrade 3.0.0 beta version to 3.0.0 release version
1 parent 0c6ecb3 commit 628a61b

File tree

4 files changed

+7
-7
lines changed

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

1414
## Implement sonic interface:

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

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

4444

4545
// sdk info
46-
version = "3.0.0-beta" // sdk version num
46+
version = "3.0.0" // 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-beta support!
7+
### 3.0.0 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-beta'
15+
pod 'VasSonic', '3.0.0'
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-beta'
27+
pod 'VasSonic', '3.0.0'
2828
end
2929
```
3030

0 commit comments

Comments
 (0)