diff --git a/README.md b/README.md index 4c4b87a7e..901a93c04 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ To utilize GitLab4J™ API in your Java project, simply add the following de ```java dependencies { ... - compile group: 'org.gitlab4j', name: 'gitlab4j-api', version: '4.19.0' + compile group: 'org.gitlab4j', name: 'gitlab4j-api', version: '5.0.0' } ``` @@ -65,7 +65,7 @@ dependencies { org.gitlab4j gitlab4j-api - 4.19.0 + 5.0.0 ``` diff --git a/pom.xml b/pom.xml index e8a04ac7c..6d3f6ee9c 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ org.gitlab4j gitlab4j-api jar - 4.20.0-SNAPSHOT + 5.0.0 GitLab4J-API - GitLab API Java Client GitLab4J-API (gitlab4j-api) provides a full featured Java client library for working with GitLab repositories and servers via the GitLab REST API. https://github.com/gitlab4j/gitlab4j-api @@ -80,7 +80,7 @@ git@github.com:gitlab4j/gitlab4j-api.git scm:git:git@github.com:gitlab4j/gitlab4j-api.git scm:git:git@github.com:gitlab4j/gitlab4j-api.git - head + gitlab4j-api-5.0.0 diff --git a/src/main/java/org/gitlab4j/api/GroupApi.java b/src/main/java/org/gitlab4j/api/GroupApi.java index a4a179aa2..c54bb5dcf 100644 --- a/src/main/java/org/gitlab4j/api/GroupApi.java +++ b/src/main/java/org/gitlab4j/api/GroupApi.java @@ -641,7 +641,7 @@ public Group updateGroup(Object groupIdOrPath, String name, String path, String * @param sharedRunnersMinutesLimit (optional) - (admin-only) Pipeline minutes quota for this group * @return the created Group instance * @throws GitLabApiException if any exception occurs - * @deprecated Will be removed in version 5.0, replaced by {@link #addGroup(String, String, String, Visibility, + * @deprecated Will be removed in version 6.0, replaced by {@link #addGroup(String, String, String, Visibility, * Boolean, Boolean, Long)} */ @Deprecated @@ -682,7 +682,7 @@ public Group addGroup(String name, String path, String description, Boolean memb * @param sharedRunnersMinutesLimit (optional) - (admin-only) Pipeline minutes quota for this group * @return the updated Group instance * @throws GitLabApiException if any exception occurs - * @deprecated Will be removed in version 5.0, replaced by {@link #updateGroup(Object, String, String, String, + * @deprecated Will be removed in version 6.0, replaced by {@link #updateGroup(Object, String, String, String, * Visibility, Boolean, Boolean, Long)} */ @Deprecated @@ -873,7 +873,7 @@ public List getAllMembers(Object groupIdOrPath) throws GitLabApiExceptio * @return a list of group members viewable by the authenticated user, including inherited members * through ancestor groups in the specified page range * @throws GitLabApiException if any exception occurs - * @deprecated Will be removed in version 5.0 + * @deprecated Will be removed in version 6.0 */ @Deprecated public List getAllMembers(Object groupIdOrPath, int page, int perPage) throws GitLabApiException { diff --git a/src/main/java/org/gitlab4j/api/LabelsApi.java b/src/main/java/org/gitlab4j/api/LabelsApi.java index d9a4f045d..b8ba967f5 100644 --- a/src/main/java/org/gitlab4j/api/LabelsApi.java +++ b/src/main/java/org/gitlab4j/api/LabelsApi.java @@ -355,7 +355,7 @@ public List