Skip to content

Commit

Permalink
publish 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
yydcdut committed Jul 21, 2018
1 parent 384ea94 commit 4c1bc11
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 16 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,6 @@
### 0.1.2
* fix #18,#48,#44,#51

### 0.1.3
* fix #52,#49,#50

10 changes: 5 additions & 5 deletions README-zh-rCN.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ Demo apk : [下载](https://github.com/yydcdut/RxMarkdown/blob/master/apk/demo.a
# Gradle

```groovy
implementation 'com.yydcdut:markdown-processor:0.1.2'
implementation 'com.yydcdut:rxmarkdown-wrapper:0.1.2'
implementation 'com.yydcdut:markdown-processor:0.1.3'
implementation 'com.yydcdut:rxmarkdown-wrapper:0.1.3'
```

或者不想使用 RxJava 的话,直接引用 `markdown-processor` 即可:

```groovy
implementation 'com.yydcdut:markdown-processor:0.1.2'
implementation 'com.yydcdut:markdown-processor:0.1.3'
```

## 支持语法
Expand Down Expand Up @@ -101,8 +101,8 @@ RxMarkdown 目前提供两种解析 markdown 的解析方式, `TextFactory`
### 引用

```groovy
implementation 'com.yydcdut:markdown-processor:0.1.2'
implementation 'com.yydcdut:rxmarkdown-wrapper:0.1.2'
implementation 'com.yydcdut:markdown-processor:0.1.3'
implementation 'com.yydcdut:rxmarkdown-wrapper:0.1.3'
implementation 'io.reactivex:rxandroid:1.2.0'
implementation 'io.reactivex:rxjava:1.1.5'
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ Change Log : [SEE](./CHANGELOG.md)
# Gradle

```groovy
implementation 'com.yydcdut:markdown-processor:0.1.2'
implementation 'com.yydcdut:rxmarkdown-wrapper:0.1.2'
implementation 'com.yydcdut:markdown-processor:0.1.3'
implementation 'com.yydcdut:rxmarkdown-wrapper:0.1.3'
```

Or if you don't want to use RxJava, you can simply refer to `markdown-processor` :

```groovy
implementation 'com.yydcdut:markdown-processor:0.1.2'
implementation 'com.yydcdut:markdown-processor:0.1.3'
```

## Support Syntax
Expand Down Expand Up @@ -103,8 +103,8 @@ RxMarkdown now provides 2 factories to parse markdown, `TextFactory` and `EditF
### Setup

```groovy
implementation 'com.yydcdut:markdown-processor:0.1.2'
implementation 'com.yydcdut:rxmarkdown-wrapper:0.1.2'
implementation 'com.yydcdut:markdown-processor:0.1.3'
implementation 'com.yydcdut:rxmarkdown-wrapper:0.1.3'
implementation 'io.reactivex:rxandroid:1.2.0'
implementation 'io.reactivex:rxjava:1.1.5'
Expand Down
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ dependencies {
implementation 'com.squareup.okhttp:okhttp:2.4.0'
implementation 'com.squareup.okio:okio:1.5.0'
implementation 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
implementation project(':markdown-processor')
implementation project(':rxmarkdown-wrapper')
implementation 'com.yydcdut:markdown-processor:0.1.2'
implementation 'com.yydcdut:rxmarkdown-wrapper:0.1.2'
// implementation project(':markdown-processor')
// implementation project(':rxmarkdown-wrapper')
implementation 'com.yydcdut:markdown-processor:0.1.3'
implementation 'com.yydcdut:rxmarkdown-wrapper:0.1.3'
}
2 changes: 1 addition & 1 deletion markdown-processor/publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ artifacts {
archives sourcesJar
}

version = "0.1.2"
version = "0.1.3"

def siteUrl = 'https://github.com/yydcdut/RxMarkdown'
def gitUrl = 'https://github.com/yydcdut/RxMarkdown.git'
Expand Down
2 changes: 1 addition & 1 deletion rxmarkdown-wrapper/publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ artifacts {
archives sourcesJar
}

version = "0.1.2"
version = "0.1.3"

def siteUrl = 'https://github.com/yydcdut/RxMarkdown'
def gitUrl = 'https://github.com/yydcdut/RxMarkdown.git'
Expand Down

0 comments on commit 4c1bc11

Please sign in to comment.