Skip to content

Commit 19dbbeb

Browse files
Release 1.0.1
1 parent f46a210 commit 19dbbeb

File tree

3 files changed

+18
-7
lines changed

3 files changed

+18
-7
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
## [Unreleased]
88
Click the link above to see the future.
99

10+
## [1.0.1] - 2019-05-27
11+
[Downloads from maven central.][Download 1.0.1]
12+
13+
[Kotlin Documentation][KDoc 1.0.1]
14+
15+
### Changed
16+
- Updated NBT-Manipulator to `1.0.1`
17+
1018
## [1.0.0] - 2019-05-27
1119
[Downloads from maven central.][Download 1.0.0]
1220

@@ -57,19 +65,22 @@ Click the link above to see the future.
5765
- API to read and write to/from MCA files using `RegionIO`
5866
- API to freely manipulate `Region` and `Chunk` data loaded in memory
5967

60-
[Unreleased]: https://github.com/GameModsBR/Region-Manipulator/compare/v1.0.0...HEAD
68+
[Unreleased]: https://github.com/GameModsBR/Region-Manipulator/compare/v1.0.1...HEAD
69+
[1.0.1]: https://github.com/GameModsBR/Region-Manipulator/compare/v1.0.0..v1.0.1
6170
[1.0.0]: https://github.com/GameModsBR/Region-Manipulator/compare/v0.0.4..v1.0.0
6271
[0.0.4]: https://github.com/GameModsBR/Region-Manipulator/compare/v0.0.3..v0.0.4
6372
[0.0.3]: https://github.com/GameModsBR/Region-Manipulator/compare/v0.0.2..v0.0.3
6473
[0.0.2]: https://github.com/GameModsBR/Region-Manipulator/compare/v0.0.1..v0.0.2
6574
[0.0.1]: https://github.com/GameModsBR/Region-Manipulator/compare/v0.0.0..v0.0.1
6675

76+
[Download 1.0.1]: http://central.maven.org/maven2/br/com/gamemods/region-manipulator/1.0.1/
6777
[Download 1.0.0]: http://central.maven.org/maven2/br/com/gamemods/region-manipulator/1.0.0/
6878
[Download 0.0.4]: http://central.maven.org/maven2/br/com/gamemods/region-manipulator/0.0.4/
6979
[Download 0.0.3]: http://central.maven.org/maven2/br/com/gamemods/region-manipulator/0.0.3/
7080
[Download 0.0.2]: http://central.maven.org/maven2/br/com/gamemods/region-manipulator/0.0.2/
7181
[Download 0.0.1]: http://central.maven.org/maven2/br/com/gamemods/region-manipulator/0.0.1/
7282

83+
[KDoc 1.0.1]: https://github.com/GameModsBR/Region-Manipulator/blob/d8893b801af7a65977b2b457009902da8cd10d47/kdoc/br.com.gamemods.regionmanipulator/index.md
7384
[KDoc 1.0.0]: https://github.com/GameModsBR/Region-Manipulator/blob/4bea23fa037af955505ed1aff78fbae8e87a589a/kdoc/br.com.gamemods.regionmanipulator/index.md
7485

7586
[NBT-Manipulator]: https://github.com/GameModsBR/NBT-Manipulator/

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ repositories {
1818
}
1919
2020
dependencies {
21-
compile 'br.com.gamemods:region-manipulator:1.0.0'
21+
compile 'br.com.gamemods:region-manipulator:1.0.1'
2222
}
2323
```
2424

@@ -28,14 +28,14 @@ dependencies {
2828
<dependency>
2929
<groupId>br.com.gamemods</groupId>
3030
<artifactId>region-manipulator</artifactId>
31-
<version>1.0.0</version>
31+
<version>1.0.1</version>
3232
</dependency>
3333
</dependencies>
3434
```
3535

3636
### Ivy
3737
```xml
38-
<dependency org="br.com.gamemods" name="region-manipulator" rev="1.0.0"/>
38+
<dependency org="br.com.gamemods" name="region-manipulator" rev="1.0.1"/>
3939
```
4040

4141
### Direct JAR
@@ -46,7 +46,7 @@ Download it from [maven central](http://central.maven.org/maven2/br/com/gamemods
4646
internal fun clearEntities(from: File, to: File) {
4747
val region = RegionIO.readRegion(from)
4848
val chunk = region[ChunkPos(region.position.xPos * 32, region.position.zPos * 32)] ?: return
49-
chunk.level.getCompoundList("Entities").value.forEach {
49+
chunk.level.getCompoundList("Entities").forEach {
5050
println(it.getString("id") + " "+ it.getDoubleList("Pos"))
5151
}
5252
chunk.level["Entities"] = NbtList(mutableListOf<NbtCompound>())

build.gradle

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

1010
group 'br.com.gamemods'
11-
version '1.0.0'
11+
version '1.0.1'
1212

1313
sourceSets.main.java.srcDirs = ["src/main/kotlin"]
1414
sourceSets.test.java.srcDirs = ["src/main/kotlin"]
@@ -23,7 +23,7 @@ repositories {
2323
dependencies {
2424
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
2525
implementation group: 'org.jetbrains.kotlin', name: 'kotlin-reflect'
26-
compile 'br.com.gamemods:nbt-manipulator:1.0.0'
26+
compile 'br.com.gamemods:nbt-manipulator:1.0.1'
2727
testCompile group: 'junit', name: 'junit', version: '4.12'
2828
}
2929

0 commit comments

Comments
 (0)