File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1
1
## [ Unreleased]
2
2
3
+ ## [ v0.8.0] (2022-04-18)
4
+
3
5
### PlayerInventory API
4
6
5
7
This version introduces new * experimental* PlayerInventory API.
@@ -41,6 +43,8 @@ List<ItemStack> allItems = inventory.getItems();
41
43
42
44
### Housekeeping
43
45
46
+ - Versioning strategy changed.
47
+ Now version always includes ` PATCH ` version according to SemVer.
44
48
- Update Kotlin to 1.6.20
45
49
- Update bStats to 3.0.0
46
50
- Update ACF to 0.5.1-SNAPSHOT
@@ -156,7 +160,8 @@ It also allows users to select preferred APIs implementation via config.
156
160
- Update bukkit-gradle to 0.10.0
157
161
- Update Gradle to 7.2
158
162
159
- [ unreleased ] : https://github.com/EndlessCodeGroup/Mimic/compare/v0.7.1...develop
163
+ [ unreleased ] : https://github.com/EndlessCodeGroup/Mimic/compare/v0.8.0...develop
164
+ [ v0.8.0 ] : https://github.com/EndlessCodeGroup/Mimic/compare/v0.7.1...v0.8.0
160
165
[ v0.7.1 ] : https://github.com/EndlessCodeGroup/Mimic/compare/v0.7...v0.7.1
161
166
[ v0.7 ] : https://github.com/EndlessCodeGroup/Mimic/compare/v0.6.3...v0.7
162
167
[ v0.6.3 ] : https://github.com/EndlessCodeGroup/Mimic/compare/v0.6.2...v0.6.3
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ repositories {
51
51
}
52
52
53
53
dependencies {
54
- compileOnly(" ru.endlesscode.mimic:mimic-bukkit-api:0.7.1 " )
54
+ compileOnly(" ru.endlesscode.mimic:mimic-bukkit-api:0.8.0 " )
55
55
}
56
56
```
57
57
@@ -60,7 +60,7 @@ dependencies {
60
60
<dependency >
61
61
<groupId >ru.endlesscode.mimic</groupId >
62
62
<artifactId >mimic-bukkit-api</artifactId >
63
- <version >0.7.1 </version >
63
+ <version >0.8.0 </version >
64
64
<scope >provided</scope >
65
65
</dependency >
66
66
```
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ subprojects {
10
10
apply (plugin = " commons" )
11
11
apply (plugin = " publish" )
12
12
13
- version = " 0.7.1 "
13
+ version = " 0.8.0 "
14
14
group = " ru.endlesscode.mimic"
15
15
}
16
16
You can’t perform that action at this time.
0 commit comments