Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joserobjr committed May 27, 2019
1 parent 4104431 commit f46a210
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ 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.0] - 2019-05-27
[Downloads from maven central.][Download 1.0.0]

[Kotlin Documentation][KDoc 1.0.0]

### Changed
- Updated NBT-Manipulator to `1.0.0`

## [0.0.4] - 2019-05-27
[Downloads from maven central.][Download 0.0.4]
### Added
Expand Down Expand Up @@ -49,17 +57,21 @@ Click the link above to see the future.
- API to read and write to/from MCA files using `RegionIO`
- API to freely manipulate `Region` and `Chunk` data loaded in memory

[Unreleased]: https://github.com/GameModsBR/Region-Manipulator/compare/v0.0.4...HEAD
[Unreleased]: https://github.com/GameModsBR/Region-Manipulator/compare/v1.0.0...HEAD
[1.0.0]: https://github.com/GameModsBR/Region-Manipulator/compare/v0.0.4..v1.0.0
[0.0.4]: https://github.com/GameModsBR/Region-Manipulator/compare/v0.0.3..v0.0.4
[0.0.3]: https://github.com/GameModsBR/Region-Manipulator/compare/v0.0.2..v0.0.3
[0.0.2]: https://github.com/GameModsBR/Region-Manipulator/compare/v0.0.1..v0.0.2
[0.0.1]: https://github.com/GameModsBR/Region-Manipulator/compare/v0.0.0..v0.0.1

[Download 1.0.0]: http://central.maven.org/maven2/br/com/gamemods/region-manipulator/1.0.0/
[Download 0.0.4]: http://central.maven.org/maven2/br/com/gamemods/region-manipulator/0.0.4/
[Download 0.0.3]: http://central.maven.org/maven2/br/com/gamemods/region-manipulator/0.0.3/
[Download 0.0.2]: http://central.maven.org/maven2/br/com/gamemods/region-manipulator/0.0.2/
[Download 0.0.1]: http://central.maven.org/maven2/br/com/gamemods/region-manipulator/0.0.1/

[KDoc 1.0.0]: https://github.com/GameModsBR/Region-Manipulator/blob/4bea23fa037af955505ed1aff78fbae8e87a589a/kdoc/br.com.gamemods.regionmanipulator/index.md

[NBT-Manipulator]: https://github.com/GameModsBR/NBT-Manipulator/
[#1]: https://github.com/GameModsBR/Region-Manipulator/issues/1

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ repositories {
}
dependencies {
compile 'br.com.gamemods:region-manipulator:0.0.4'
compile 'br.com.gamemods:region-manipulator:1.0.0'
}
```

Expand All @@ -28,14 +28,14 @@ dependencies {
<dependency>
<groupId>br.com.gamemods</groupId>
<artifactId>region-manipulator</artifactId>
<version>0.0.4</version>
<version>1.0.0</version>
</dependency>
</dependencies>
```

### Ivy
```xml
<dependency org="br.com.gamemods" name="region-manipulator" rev="0.0.4"/>
<dependency org="br.com.gamemods" name="region-manipulator" rev="1.0.0"/>
```

### Direct JAR
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group 'br.com.gamemods'
version '0.0.4'
version '1.0.0'

sourceSets.main.java.srcDirs = ["src/main/kotlin"]
sourceSets.test.java.srcDirs = ["src/main/kotlin"]
Expand All @@ -23,7 +23,7 @@ repositories {
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation group: 'org.jetbrains.kotlin', name: 'kotlin-reflect'
compile 'br.com.gamemods:nbt-manipulator:0.0.2'
compile 'br.com.gamemods:nbt-manipulator:1.0.0'
testCompile group: 'junit', name: 'junit', version: '4.12'
}

Expand Down

0 comments on commit f46a210

Please sign in to comment.