Skip to content

Commit

Permalink
버전 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
kimcore committed Aug 1, 2020
1 parent a4d676a commit 4eb0783
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ allprojects {
}
dependencies {
implementation 'com.github.kimcore:Josa.kt:1.3'
implementation 'com.github.kimcore:Josa.kt:1.4'
}
```
Maven
Expand All @@ -30,7 +30,7 @@ Maven
<dependency>
<groupId>com.github.kimcore</groupId>
<artifactId>Josa.kt</artifactId>
<version>1.3</version>
<version>1.4</version>
</dependency>
</dependencies>
```
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group "com.github.kimcore"
version "1.3"
version "1.4"

repositories {
mavenCentral()
Expand Down
5 changes: 3 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#Sat Aug 01 13:01:03 KST 2020
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
2 changes: 1 addition & 1 deletion src/main/kotlin/com/github/kimcore/josa/Josa.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package com.github.kimcore.josa

@Suppress("ObjectPropertyName", "NonAsciiCharacters", "unused")
object Josa {
const val VERSION = "1.3"
const val VERSION = "1.4"
private val handlers = arrayOf(
{ s: String -> if (has(s)) "" else "" },
{ s: String -> if (has(s)) "" else "" },
Expand Down

0 comments on commit 4eb0783

Please sign in to comment.