Skip to content

Commit 4625895

Browse files
author
Victor Harlan D. Lacson
committed
Updated docs, gradle buils
1 parent c2869d6 commit 4625895

File tree

7 files changed

+17
-13
lines changed

7 files changed

+17
-13
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ buildscript {
1111
mavenCentral()
1212
}
1313
dependencies {
14-
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.0")
14+
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21")
1515
}
1616
}
1717

docs/ChangeLog.MD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# 0.8.0
22
Decouple Custom Data Types
3+
- Added Core
34
- Java 8 date and time apis
45
- Added custom transformers
56
# 0.7.1

docs/README.MD

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
<img src="./logo.png" alt="Kotlin-Grass"/>
22
<p>
3-
<img alt="Kotlin" src="https://img.shields.io/badge/kotlin-1.4.32-teal.svg?logo=kotlin" />
3+
<img alt="Kotlin" src="https://img.shields.io/badge/kotlin-1.5.21-teal.svg?logo=kotlin" />
44
<a href="/>https://repo1.maven.org/maven2/io/github/blackmo18/kotlin-grass-jvm/0.7.1/">
5-
<img alt="Latest: 0.7.1" src="https://img.shields.io/badge/Latest-0.7.1-blue.svg" target="_blank" />
6-
</a>
5+
<img alt="Parser: 0.8.0" src="https://img.shields.io/badge/Parser-0.8.0-blue.svg" target="_blank" />
6+
</a>
7+
<a href="/>https://repo1.maven.org/maven2/io/github/blackmo18/kotlin-grass-jvm/0.7.1/">
8+
<img alt="Core: 0.8.0" src="https://img.shields.io/badge/Core-0.8.0-green.svg" target="_blank" />
9+
</a>
710
<a href="https://github.com/blackmo18/kotlin-grass/blob/master/LICENSE">
811
<img alt="License: Apache License 2.0" src="https://img.shields.io/badge/License-Apache License 2.0-orange.svg" target="_blank" />
912
</a>
@@ -137,9 +140,9 @@ If a variable in your data class is a nullable, all you have to do is mark it wi
137140
|---------------|---------------|---------------|
138141
|12:00|2020-12-31 12:00|2020-12-31|
139142
#### Date and Time Types
140-
#### Import the following
143+
#### Import the following extension library
141144
```kotlin
142-
implementation("com.vhl.blackmo:kotlin-grass-core-jvm:1.0.0")
145+
implementation("com.vhl.blackmo:kotlin-grass-date-time-jvm:0.8.0")
143146
```
144147
```kotlin
145148
data class DateTimeTypes(
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

kotlin-grass-core/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ plugins {
77
jacoco
88
}
99

10-
val kotlinVersion = "1.4.32"
10+
val kotlinVersion = "1.5.21"
1111
val csvVersion = "0.15.2"
12-
val coroutineVersion = "1.4.3"
12+
val coroutineVersion = "1.5.1"
1313

1414
group = "io.github.blackmo18"
1515
version = "1.0.0"

kotlin-grass-date-time/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ plugins {
77
jacoco
88
}
99

10-
val kotlinVersion = "1.4.32"
10+
val kotlinVersion = "1.5.21"
1111
val csvVersion = "0.15.2"
12-
val coroutineVersion = "1.4.3"
12+
val coroutineVersion = "1.5.1"
1313

1414
group = "io.github.blackmo18"
1515
version = "0.8.0"

kotlin-grass-parser/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ plugins {
77
jacoco
88
}
99

10-
val kotlinVersion = "1.4.32"
10+
val kotlinVersion = "1.5.21"
1111
val csvVersion = "0.15.2"
12-
val coroutineVersion = "1.4.3"
12+
val coroutineVersion = "1.5.1"
1313

1414
group = "io.github.blackmo18"
1515
version = "0.8.0"

0 commit comments

Comments
 (0)