Skip to content

Commit 5ae3087

Browse files
committed
Fix "License" -> "Licence"
Minor adjustments to docs
1 parent 35bab1c commit 5ae3087

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

README.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,25 @@ Spatial K is a set of libraries for working with geospatial data in Kotlin inlcu
44
a port of Turfjs written in pure Kotlin. It supports Kotlin Multiplatform and Java projects while also featuring a
55
Kotlin DSL for building GeoJson objects.
66

7+
See the [project site](https://dellisd.github.io/spatial-k) form more info.
8+
79
## Installation
810

911
#### Java and Kotlin/JVM
1012

11-
```groovy
13+
```kotlin
1214
dependencies {
13-
implementation "io.github.dellisd.spatialk:geojson:0.1.0"
14-
implementation "io.github.dellisd.spatialk:turf:0.1.0"
15-
16-
// Kotlin only
17-
implementation "io.github.dellisd.spatialk:geojson-dsl:0.1.0"
15+
implementation("io.github.dellisd.spatialk:geojson:0.1.1")
16+
implementation("io.github.dellisd.spatialk:turf:0.1.1")
1817
}
1918
```
2019

2120
#### Kotlin Multiplatform
22-
```groovy
21+
```kotlin
2322
commonMain {
2423
dependencies {
25-
implementation "io.github.dellisd.spatialk:geojson:0.1.0"
26-
implementation "io.github.dellisd.spatialk:turf:0.1.0"
27-
implementation "io.github.dellisd.spatialk:geojson-dsl:0.1.0"
24+
implementation("io.github.dellisd.spatialk:geojson:0.1.1")
25+
implementation("io.github.dellisd.spatialk:turf:0.1.1")
2826
}
2927
}
3028
```

docs/geojson.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ See below for constructing GeoJson objects using the DSL.
66

77
## Installation
88

9+
![Maven Central](https://img.shields.io/maven-central/v/io.github.dellisd.spatialk/geojson)
910
![Sonatype Nexus (Snapshots)](https://img.shields.io/nexus/s/io.github.dellisd.spatialk/geojson?server=https%3A%2F%2Foss.sonatype.org)
1011

1112
=== "Kotlin"

docs/turf.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ The documentation for the ported functions can be found in the [API docs](api/tu
88

99
## Installation
1010

11+
![Maven Central](https://img.shields.io/maven-central/v/io.github.dellisd.spatialk/turf)
1112
![Sonatype Nexus (Snapshots)](https://img.shields.io/nexus/s/io.github.dellisd.spatialk/turf?server=https%3A%2F%2Foss.sonatype.org)
1213

1314
=== "Kotlin"

gradle.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
kotlin.code.style=official
22

33
GROUP=io.github.dellisd.spatialk
4-
VERSION_NAME=0.1.0
4+
VERSION_NAME=0.1.1
55

66
POM_URL=https://github.com/dellisd/spatial-k
77
POM_SCM_URL=https://github.com/dellisd/spatial-k
88
POM_SCM_CONNECTION=scm:git:git://github.com/dellisd/spatial-k.git
99
POM_SCM_DEV_CONNECTION=scm:git:git://github.com/dellisd/spatial-k.git
1010

11-
POM_LICENSE_NAME=MIT License
12-
POM_LICENSE_URL=https://opensource.org/licenses/MIT
13-
POM_LICENSE_DIST=repo
11+
POM_LICENCE_NAME=MIT License
12+
POM_LICENCE_URL=https://opensource.org/licenses/MIT
13+
POM_LICENCE_DIST=repo
1414

1515
POM_DEVELOPER_ID=dellisd
1616
POM_DEVELOPER_NAME=Derek Ellis

0 commit comments

Comments
 (0)