diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3f94126..3a858be 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
Click the link above to see the future.
+## [1.0.1] - 2019-05-27
+### Fixes
+- StackOverflowException on `NbtCompound.set(String, NbtTag)`
+
## [1.0.0] - 2019-05-27
[Downloads from maven central.][Download 1.0.0]
@@ -42,13 +46,16 @@ Useful for Java users and who couldn't get the sources or javadoc.
- API to read and write to/from NBT files/streams using `NbtIO`
- API to freely manipulate NBT data loaded in memory
-[Unreleased]: https://github.com/GameModsBR/NBT-Manipulator/compare/v1.0.0...HEAD
+[Unreleased]: https://github.com/GameModsBR/NBT-Manipulator/compare/v1.0.1...HEAD
+[1.0.1]: https://github.com/GameModsBR/NBT-Manipulator/compare/v1.0.0..v1.0.1
[1.0.0]: https://github.com/GameModsBR/NBT-Manipulator/compare/v0.0.2..v1.0.0
[0.0.2]: https://github.com/GameModsBR/NBT-Manipulator/compare/v0.0.1..v0.0.2
[0.0.1]: https://github.com/GameModsBR/NBT-Manipulator/compare/v0.0.0..v0.0.1
+[Download 1.0.1]: http://central.maven.org/maven2/br/com/gamemods/nbt-manipulator/1.0.1/
[Download 1.0.0]: http://central.maven.org/maven2/br/com/gamemods/nbt-manipulator/1.0.0/
[Download 0.0.2]: http://central.maven.org/maven2/br/com/gamemods/nbt-manipulator/0.0.2/
[Download 0.0.1]: http://central.maven.org/maven2/br/com/gamemods/nbt-manipulator/0.0.1/
+[KDoc 1.0.1]: https://github.com/GameModsBR/NBT-Manipulator/blob/51f0f36511b8d4979d5d3e322f2fb766095a174c/kdoc/br.com.gamemods.nbtmanipulator/index.md
[KDoc 1.0.0]: https://github.com/GameModsBR/NBT-Manipulator/blob/0ef42323681f9960cb2c9698d7b8b1d02632691b/kdoc/br.com.gamemods.nbtmanipulator/index.md
diff --git a/README.md b/README.md
index b6bb5c4..a91236c 100644
--- a/README.md
+++ b/README.md
@@ -20,7 +20,7 @@ repositories {
}
dependencies {
- compile 'br.com.gamemods:nbt-manipulator:1.0.0'
+ compile 'br.com.gamemods:nbt-manipulator:1.0.1'
}
```
@@ -31,7 +31,7 @@ dependencies {
br.com.gamemods
nbt-manipulator
- 1.0.0
+ 1.0.1
```
@@ -39,7 +39,7 @@ dependencies {
### Ivy
```xml
-
+
```
### Direct JAR
diff --git a/build.gradle b/build.gradle
index 0cd80c1..067c183 100644
--- a/build.gradle
+++ b/build.gradle
@@ -8,7 +8,7 @@ plugins {
}
group 'br.com.gamemods'
-version '1.0.0'
+version '1.0.1'
sourceSets.main.java.srcDirs = ["src/main/kotlin"]
sourceSets.test.java.srcDirs = ["src/main/kotlin"]
diff --git a/src/main/kotlin/br/com/gamemods/nbtmanipulator/nbt.kt b/src/main/kotlin/br/com/gamemods/nbtmanipulator/nbt.kt
index 975313a..f3eaecb 100644
--- a/src/main/kotlin/br/com/gamemods/nbtmanipulator/nbt.kt
+++ b/src/main/kotlin/br/com/gamemods/nbtmanipulator/nbt.kt
@@ -260,7 +260,7 @@ class NbtCompound(value: Map) : NbtTag(), MutableMap