Skip to content

Commit

Permalink
Upgrade 3.0.0 beta version to 3.0.0 release version
Browse files Browse the repository at this point in the history
  • Loading branch information
marlonlu committed Mar 27, 2018
1 parent 0c6ecb3 commit 628a61b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 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-beta'
compile 'com.tencent.sonic:sdk:3.0.0'
```

## Implement sonic interface:
Expand Down
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-beta'
compile 'com.tencent.sonic:sdk:3.0.0'

// 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-beta"
versionName "3.0.0"

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


// sdk info
version = "3.0.0-beta" // sdk version num
version = "3.0.0" // 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-beta support!
### 3.0.0 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-beta'
pod 'VasSonic', '3.0.0'
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-beta'
pod 'VasSonic', '3.0.0'
end
```

Expand Down

0 comments on commit 628a61b

Please sign in to comment.