Skip to content

Commit f46a210

Browse files
Release 1.0.0
1 parent 4104431 commit f46a210

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

CHANGELOG.md

Lines changed: 13 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.0] - 2019-05-27
11+
[Downloads from maven central.][Download 1.0.0]
12+
13+
[Kotlin Documentation][KDoc 1.0.0]
14+
15+
### Changed
16+
- Updated NBT-Manipulator to `1.0.0`
17+
1018
## [0.0.4] - 2019-05-27
1119
[Downloads from maven central.][Download 0.0.4]
1220
### Added
@@ -49,17 +57,21 @@ Click the link above to see the future.
4957
- API to read and write to/from MCA files using `RegionIO`
5058
- API to freely manipulate `Region` and `Chunk` data loaded in memory
5159

52-
[Unreleased]: https://github.com/GameModsBR/Region-Manipulator/compare/v0.0.4...HEAD
60+
[Unreleased]: https://github.com/GameModsBR/Region-Manipulator/compare/v1.0.0...HEAD
61+
[1.0.0]: https://github.com/GameModsBR/Region-Manipulator/compare/v0.0.4..v1.0.0
5362
[0.0.4]: https://github.com/GameModsBR/Region-Manipulator/compare/v0.0.3..v0.0.4
5463
[0.0.3]: https://github.com/GameModsBR/Region-Manipulator/compare/v0.0.2..v0.0.3
5564
[0.0.2]: https://github.com/GameModsBR/Region-Manipulator/compare/v0.0.1..v0.0.2
5665
[0.0.1]: https://github.com/GameModsBR/Region-Manipulator/compare/v0.0.0..v0.0.1
5766

67+
[Download 1.0.0]: http://central.maven.org/maven2/br/com/gamemods/region-manipulator/1.0.0/
5868
[Download 0.0.4]: http://central.maven.org/maven2/br/com/gamemods/region-manipulator/0.0.4/
5969
[Download 0.0.3]: http://central.maven.org/maven2/br/com/gamemods/region-manipulator/0.0.3/
6070
[Download 0.0.2]: http://central.maven.org/maven2/br/com/gamemods/region-manipulator/0.0.2/
6171
[Download 0.0.1]: http://central.maven.org/maven2/br/com/gamemods/region-manipulator/0.0.1/
6272

73+
[KDoc 1.0.0]: https://github.com/GameModsBR/Region-Manipulator/blob/4bea23fa037af955505ed1aff78fbae8e87a589a/kdoc/br.com.gamemods.regionmanipulator/index.md
74+
6375
[NBT-Manipulator]: https://github.com/GameModsBR/NBT-Manipulator/
6476
[#1]: https://github.com/GameModsBR/Region-Manipulator/issues/1
6577

README.md

Lines changed: 3 additions & 3 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:0.0.4'
21+
compile 'br.com.gamemods:region-manipulator:1.0.0'
2222
}
2323
```
2424

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

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

4141
### Direct JAR

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 '0.0.4'
11+
version '1.0.0'
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:0.0.2'
26+
compile 'br.com.gamemods:nbt-manipulator:1.0.0'
2727
testCompile group: 'junit', name: 'junit', version: '4.12'
2828
}
2929

0 commit comments

Comments
 (0)