Skip to content

Commit 72d0af9

Browse files
Merge pull request #25 from TheNewEconomy/feat/doc-and-method-consistency
2.17
2 parents b3d90e4 + a28b15d commit 72d0af9

3 files changed

Lines changed: 1037 additions & 737 deletions

File tree

.changelog/2.17.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,17 @@
11
# 2.17
2-
- Added support for 1.21.10
2+
- Added support for 1.21.10
3+
- Added clarity to documentation for default behavior if the provider doesn't support share accounts.
4+
- Added clarity to documentation for default behavior if the provider does not support multi-currency.
5+
- Added clarity to documentation for default behavior if the provider doesn't support multiple worlds.
6+
- Deprecated ```List<String> accountsAccessTo(@NotNull final String pluginName, @NotNull final UUID accountID, @NotNull final AccountPermission... permissions)```
7+
- This method will be removed in a future release as the string return allows ambiguity.
8+
- Deprecated ```List<String> accountsMemberOf(@NotNull final String pluginName, @NotNull final UUID accountID)```
9+
- This method will be removed in a future release as the string return allows ambiguity.
10+
- Deprecated ```List<String> accountsOwnedBy(@NotNull final String pluginName, @NotNull final UUID accountID)```
11+
- This method will be removed in a future release as the string return allows ambiguity.
12+
- Added ```List<UUID> accountsWithAccessTo(@NotNull final String pluginName, @NotNull final UUID accountID, @NotNull final AccountPermission... permissions)```
13+
- This method is a replacement for the now deprecated ```List<String> accountsAccessTo(@NotNull final String pluginName, @NotNull final UUID accountID, @NotNull final AccountPermission... permissions)```
14+
- Added ```List<UUID> accountsWithMembershipTo(@NotNull final String pluginName, @NotNull final UUID accountID)```
15+
- This method is a replacement for the now deprecated ```List<String> accountsMemberOf(@NotNull final String pluginName, @NotNull final UUID accountID)```
16+
- Added ```List<UUID> accountsWithOwnerOf(@NotNull final String pluginName, @NotNull final UUID accountID)```
17+
- This method is a replacement for the now deprecated ```List<String> accountsOwnedBy(@NotNull final String pluginName, @NotNull final UUID accountID)```

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
group = "net.milkbowl.vault"
7-
version = "2.16"
7+
version = "2.17"
88
description = "VaultUnlockedAPI"
99

1010
repositories {

0 commit comments

Comments
 (0)