Skip to content

Commit

Permalink
upgrade version from "2.0.0-alpha" to "2.0.0-beta"
Browse files Browse the repository at this point in the history
  • Loading branch information
marlonlu committed Nov 24, 2017
1 parent 35e666a commit 9f5ce67
Show file tree
Hide file tree
Showing 5 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:2.0.0-alpha'
compile 'com.tencent.sonic:sdk:2.0.0-beta'
```

## Implement sonic interface:
Expand Down
2 changes: 1 addition & 1 deletion sonic-android/docs/Sonic接入指引.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
在模块的build.gradle文件里面加入

```
compile 'com.tencent.sonic:sdk:2.0.0-alpha'
compile 'com.tencent.sonic:sdk:2.0.0-beta'
```

## 2.代码接入
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:2.0.0-alpha'
compile 'com.tencent.sonic:sdk:2.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 2
versionName "2.0.0-alpha"
versionName "2.0.0-beta"

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

Expand All @@ -36,7 +36,7 @@ dependencies {


// sdk info
version = "2.0.0-alpha" // sdk version num
version = "2.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
4 changes: 2 additions & 2 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)
---

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

Expand Down

0 comments on commit 9f5ce67

Please sign in to comment.