Skip to content

Commit

Permalink
Releases 1.0.1, Fixes StackOverflowException on `NbtCompound.set(Stri…
Browse files Browse the repository at this point in the history
…ng, NbtTag)`
  • Loading branch information
joserobjr committed May 27, 2019
1 parent af06621 commit c02ae50
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand Down Expand Up @@ -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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ repositories {
}
dependencies {
compile 'br.com.gamemods:nbt-manipulator:1.0.0'
compile 'br.com.gamemods:nbt-manipulator:1.0.1'
}
```

Expand All @@ -31,15 +31,15 @@ dependencies {
<dependency>
<groupId>br.com.gamemods</groupId>
<artifactId>nbt-manipulator</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>
</dependencies>
```

### Ivy

```xml
<dependency org="br.com.gamemods" name="nbt-manipulator" rev="1.0.0"/>
<dependency org="br.com.gamemods" name="nbt-manipulator" rev="1.0.1"/>
```

### Direct JAR
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/br/com/gamemods/nbtmanipulator/nbt.kt
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ class NbtCompound(value: Map<String, NbtTag>) : NbtTag(), MutableMap<String, Nbt
* The given tag will be linked, so modifications to it will also affects the compound value.
*/
operator fun set(key: String, value: NbtTag) {
this[key] = value
put(key, value)
}

/**
Expand Down

0 comments on commit c02ae50

Please sign in to comment.