Skip to content

Commit

Permalink
1.7.5 릴리즈 - Android 10 미만 버전에서 작동하지 않는 버그 수정 (gradle 업데이트)
Browse files Browse the repository at this point in the history
  • Loading branch information
JellyBrick committed Jan 10, 2020
1 parent fc685a8 commit c142cda
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
### Gradle

```gradle
compile 'be.zvz:KotlinInside:1.7.4'
compile 'be.zvz:KotlinInside:1.7.5'
```

### Maven
Expand All @@ -16,7 +16,7 @@ compile 'be.zvz:KotlinInside:1.7.4'
<dependency>
<groupId>be.zvz</groupId>
<artifactId>KotlinInside</artifactId>
<version>1.7.4</version>
<version>1.7.5</version>
<type>pom</type>
</dependency>
```
Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ apply plugin: 'org.jetbrains.dokka'

def libName = 'KotlinInside'
def libDevVersion = ''
def libVersion = "1.7.4$libDevVersion"
def libVersion = "1.7.5$libDevVersion"
def libDesc = 'Unofficial DCInside API written in Kotlin'

group = 'be.zvz'
Expand All @@ -48,10 +48,10 @@ dependencies {
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.10.1'

//FlexMark
implementation group: 'com.vladsch.flexmark', name: 'flexmark', version: '0.50.44'
implementation group: 'com.vladsch.flexmark', name: 'flexmark-ext-gfm-strikethrough', version: '0.50.44'
implementation group: 'com.vladsch.flexmark', name: 'flexmark-ext-tables', version: '0.50.44'
implementation group: 'com.vladsch.flexmark', name: 'flexmark-ext-gfm-tasklist', version: '0.50.44'
implementation group: 'com.vladsch.flexmark', name: 'flexmark', version: '0.50.46'
implementation group: 'com.vladsch.flexmark', name: 'flexmark-ext-gfm-strikethrough', version: '0.50.46'
implementation group: 'com.vladsch.flexmark', name: 'flexmark-ext-tables', version: '0.50.46'
implementation group: 'com.vladsch.flexmark', name: 'flexmark-ext-gfm-tasklist', version: '0.50.46'

// Use the Kotlin JDK standard library.
implementation group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib-jdk7'
Expand Down

0 comments on commit c142cda

Please sign in to comment.