Skip to content

Commit b6b9ec4

Browse files
committed
[maven-release-plugin] prepare release gitlab4j-api-5.0.0
1 parent c6711a1 commit b6b9ec4

File tree

7 files changed

+23
-23
lines changed

7 files changed

+23
-23
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ To utilize GitLab4J™ API in your Java project, simply add the following de
5454
```java
5555
dependencies {
5656
...
57-
compile group: 'org.gitlab4j', name: 'gitlab4j-api', version: '4.19.0'
57+
compile group: 'org.gitlab4j', name: 'gitlab4j-api', version: '5.0.0'
5858
}
5959
```
6060

@@ -65,7 +65,7 @@ dependencies {
6565
<dependency>
6666
<groupId>org.gitlab4j</groupId>
6767
<artifactId>gitlab4j-api</artifactId>
68-
<version>4.19.0</version>
68+
<version>5.0.0</version>
6969
</dependency>
7070
```
7171

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>org.gitlab4j</groupId>
88
<artifactId>gitlab4j-api</artifactId>
99
<packaging>jar</packaging>
10-
<version>4.20.0-SNAPSHOT</version>
10+
<version>5.0.0</version>
1111
<name>GitLab4J-API - GitLab API Java Client</name>
1212
<description>GitLab4J-API (gitlab4j-api) provides a full featured Java client library for working with GitLab repositories and servers via the GitLab REST API.</description>
1313
<url>https://github.com/gitlab4j/gitlab4j-api</url>
@@ -80,7 +80,7 @@
8080
<url>[email protected]:gitlab4j/gitlab4j-api.git</url>
8181
<connection>scm:git:[email protected]:gitlab4j/gitlab4j-api.git</connection>
8282
<developerConnection>scm:git:[email protected]:gitlab4j/gitlab4j-api.git</developerConnection>
83-
<tag>head</tag>
83+
<tag>gitlab4j-api-5.0.0</tag>
8484
</scm>
8585

8686
<build>

src/main/java/org/gitlab4j/api/GroupApi.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ public Group updateGroup(Object groupIdOrPath, String name, String path, String
641641
* @param sharedRunnersMinutesLimit (optional) - (admin-only) Pipeline minutes quota for this group
642642
* @return the created Group instance
643643
* @throws GitLabApiException if any exception occurs
644-
* @deprecated Will be removed in version 5.0, replaced by {@link #addGroup(String, String, String, Visibility,
644+
* @deprecated Will be removed in version 6.0, replaced by {@link #addGroup(String, String, String, Visibility,
645645
* Boolean, Boolean, Long)}
646646
*/
647647
@Deprecated
@@ -682,7 +682,7 @@ public Group addGroup(String name, String path, String description, Boolean memb
682682
* @param sharedRunnersMinutesLimit (optional) - (admin-only) Pipeline minutes quota for this group
683683
* @return the updated Group instance
684684
* @throws GitLabApiException if any exception occurs
685-
* @deprecated Will be removed in version 5.0, replaced by {@link #updateGroup(Object, String, String, String,
685+
* @deprecated Will be removed in version 6.0, replaced by {@link #updateGroup(Object, String, String, String,
686686
* Visibility, Boolean, Boolean, Long)}
687687
*/
688688
@Deprecated
@@ -873,7 +873,7 @@ public List<Member> getAllMembers(Object groupIdOrPath) throws GitLabApiExceptio
873873
* @return a list of group members viewable by the authenticated user, including inherited members
874874
* through ancestor groups in the specified page range
875875
* @throws GitLabApiException if any exception occurs
876-
* @deprecated Will be removed in version 5.0
876+
* @deprecated Will be removed in version 6.0
877877
*/
878878
@Deprecated
879879
public List<Member> getAllMembers(Object groupIdOrPath, int page, int perPage) throws GitLabApiException {

src/main/java/org/gitlab4j/api/LabelsApi.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ public List<Label> getLabels(Object projectIdOrPath) throws GitLabApiException {
355355
* @param perPage the number of items per page
356356
* @return a list of project's labels in the specified range
357357
* @throws GitLabApiException if any exception occurs
358-
* @deprecated Will be removed in the next major release (5.0.0)
358+
* @deprecated Will be removed in the next major release (6.0.0)
359359
*/
360360
@Deprecated
361361
public List<Label> getLabels(Object projectIdOrPath, int page, int perPage) throws GitLabApiException {

src/main/java/org/gitlab4j/api/ProjectApi.java

+8-8
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ public Stream<Project> getProjectsStream() throws GitLabApiException {
196196
* @param statistics include project statistics
197197
* @return a list of projects accessible by the authenticated user and matching the supplied parameters
198198
* @throws GitLabApiException if any exception occurs
199-
* @deprecated Will be removed in version 5.0, replaced by {@link #getProjects(Boolean, Visibility,
199+
* @deprecated Will be removed in version 6.0, replaced by {@link #getProjects(Boolean, Visibility,
200200
* Constants.ProjectOrderBy, Constants.SortOrder, String, Boolean, Boolean, Boolean, Boolean, Boolean)}
201201
*/
202202
@Deprecated
@@ -1510,7 +1510,7 @@ public List<Member> getAllMembers(Object projectIdOrPath) throws GitLabApiExcept
15101510
* @param perPage the number of Member instances per page
15111511
* @return the project members viewable by the authenticated user, including inherited members through ancestor groups
15121512
* @throws GitLabApiException if any exception occurs
1513-
* @deprecated Will be removed in version 5.0
1513+
* @deprecated Will be removed in version 6.0
15141514
*/
15151515
@Deprecated
15161516
public List<Member> getAllMembers(Object projectIdOrPath, int page, int perPage) throws GitLabApiException {
@@ -2203,7 +2203,7 @@ public ProjectHook modifyHook(ProjectHook hook) throws GitLabApiException {
22032203
* @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance, required
22042204
* @return a list of project's issues
22052205
* @throws GitLabApiException if any exception occurs
2206-
* @deprecated Will be removed in version 5.0, replaced by {@link IssuesApi#getIssues(Object)}
2206+
* @deprecated Will be removed in version 6.0, replaced by {@link IssuesApi#getIssues(Object)}
22072207
*/
22082208
@Deprecated
22092209
public List<Issue> getIssues(Object projectIdOrPath) throws GitLabApiException {
@@ -2220,7 +2220,7 @@ public List<Issue> getIssues(Object projectIdOrPath) throws GitLabApiException {
22202220
* @param perPage the number of issues per page
22212221
* @return the list of issues in the specified range
22222222
* @throws GitLabApiException if any exception occurs
2223-
* @deprecated Will be removed in version 5.0, replaced by {@link IssuesApi#getIssues(Object, int, int)}
2223+
* @deprecated Will be removed in version 6.0, replaced by {@link IssuesApi#getIssues(Object, int, int)}
22242224
*/
22252225
@Deprecated
22262226
public List<Issue> getIssues(Object projectIdOrPath, int page, int perPage) throws GitLabApiException {
@@ -2237,7 +2237,7 @@ public List<Issue> getIssues(Object projectIdOrPath, int page, int perPage) thro
22372237
* @param itemsPerPage the number of issues per page
22382238
* @return the list of issues in the specified range
22392239
* @throws GitLabApiException if any exception occurs
2240-
* @deprecated Will be removed in version 5.0, replaced by {@link IssuesApi#getIssues(Object, int)}
2240+
* @deprecated Will be removed in version 6.0, replaced by {@link IssuesApi#getIssues(Object, int)}
22412241
*/
22422242
@Deprecated
22432243
public Pager<Issue> getIssues(Object projectIdOrPath, int itemsPerPage) throws GitLabApiException {
@@ -2252,7 +2252,7 @@ public Pager<Issue> getIssues(Object projectIdOrPath, int itemsPerPage) throws G
22522252
* @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance, required
22532253
* @return a Stream of the project's issues
22542254
* @throws GitLabApiException if any exception occurs
2255-
* @deprecated Will be removed in version 5.0, replaced by {@link IssuesApi#getIssues(Object)}
2255+
* @deprecated Will be removed in version 6.0, replaced by {@link IssuesApi#getIssues(Object)}
22562256
*/
22572257
@Deprecated
22582258
public Stream<Issue> getIssuesStream(Object projectIdOrPath) throws GitLabApiException {
@@ -2268,7 +2268,7 @@ public Stream<Issue> getIssuesStream(Object projectIdOrPath) throws GitLabApiExc
22682268
* @param issueId the internal ID of a project's issue
22692269
* @return the specified Issue instance
22702270
* @throws GitLabApiException if any exception occurs
2271-
* @deprecated Will be removed in version 5.0, replaced by {@link IssuesApi#getIssue(Object, Long)}
2271+
* @deprecated Will be removed in version 6.0, replaced by {@link IssuesApi#getIssue(Object, Long)}
22722272
*/
22732273
@Deprecated
22742274
public Issue getIssue(Object projectIdOrPath, Long issueId) throws GitLabApiException {
@@ -2284,7 +2284,7 @@ public Issue getIssue(Object projectIdOrPath, Long issueId) throws GitLabApiExce
22842284
* @param projectIdOrPath the project in the form of an Long(ID), String(path), or Project instance, required
22852285
* @param issueId the internal ID of a project's issue
22862286
* @throws GitLabApiException if any exception occurs
2287-
* @deprecated Will be removed in version 5.0, replaced by {@link IssuesApi#deleteIssue(Object, Long)}
2287+
* @deprecated Will be removed in version 6.0, replaced by {@link IssuesApi#deleteIssue(Object, Long)}
22882288
*/
22892289
@Deprecated
22902290
public void deleteIssue(Object projectIdOrPath, Long issueId) throws GitLabApiException {

src/main/java/org/gitlab4j/api/RepositoryFileApi.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ public RepositoryFile getFile(Object projectIdOrPath, String filePath, String re
133133
* @param ref (required) - The name of branch, tag or commit
134134
* @return a RepositoryFile instance with the file info and file content
135135
* @throws GitLabApiException if any exception occurs
136-
* @deprecated Will be removed in version 5.0, replaced by {@link #getFile(Object, String, String)}
136+
* @deprecated Will be removed in version 6.0, replaced by {@link #getFile(Object, String, String)}
137137
*/
138138
@Deprecated
139139
public RepositoryFile getFile(String filePath, Long projectId, String ref) throws GitLabApiException {
@@ -181,7 +181,7 @@ public RepositoryFile getFile(Object projectIdOrPath, String filePath, String re
181181
* @param ref (required) - The name of branch, tag or commit
182182
* @return a RepositoryFile instance with the file info
183183
* @throws GitLabApiException if any exception occurs
184-
* @deprecated Will be removed in version 5.0
184+
* @deprecated Will be removed in version 6.0
185185
*/
186186
@Deprecated
187187
protected RepositoryFile getFileV3(String filePath, Long projectId, String ref) throws GitLabApiException {
@@ -242,7 +242,7 @@ public RepositoryFile createFile(Object projectIdOrPath, RepositoryFile file, St
242242
* @param commitMessage the commit message
243243
* @return a RepositoryFile instance with the created file info
244244
* @throws GitLabApiException if any exception occurs
245-
* @deprecated Will be removed in version 5.0, replaced by {@link #createFile(Object, RepositoryFile, String, String)}
245+
* @deprecated Will be removed in version 6.0, replaced by {@link #createFile(Object, RepositoryFile, String, String)}
246246
*/
247247
@Deprecated
248248
public RepositoryFile createFile(RepositoryFile file, Long projectId, String branchName, String commitMessage) throws GitLabApiException {
@@ -299,7 +299,7 @@ public RepositoryFile updateFile(Object projectIdOrPath, RepositoryFile file, St
299299
* @param commitMessage the commit message
300300
* @return a RepositoryFile instance with the updated file info
301301
* @throws GitLabApiException if any exception occurs
302-
* @deprecated Will be removed in version 5.0, replaced by {@link #updateFile(Object, RepositoryFile, String, String)}
302+
* @deprecated Will be removed in version 6.0, replaced by {@link #updateFile(Object, RepositoryFile, String, String)}
303303
*/
304304
@Deprecated
305305
public RepositoryFile updateFile(RepositoryFile file, Long projectId, String branchName, String commitMessage) throws GitLabApiException {
@@ -355,7 +355,7 @@ public void deleteFile(Object projectIdOrPath, String filePath, String branchNam
355355
* @param branchName the name of branch
356356
* @param commitMessage the commit message
357357
* @throws GitLabApiException if any exception occurs
358-
* @deprecated Will be removed in version 5.0, replaced by {@link #deleteFile(Object, String, String, String)}
358+
* @deprecated Will be removed in version 6.0, replaced by {@link #deleteFile(Object, String, String, String)}
359359
*/
360360
@Deprecated
361361
public void deleteFile(String filePath, Long projectId, String branchName, String commitMessage) throws GitLabApiException {

src/main/java/org/gitlab4j/api/UserApi.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ public Stream<User> findUsersStream(String emailOrUsername) throws GitLabApiExce
511511
* @param projectsLimit the maximum number of project
512512
* @return created User instance
513513
* @throws GitLabApiException if any exception occurs
514-
* @deprecated Will be removed in version 5.0, replaced by {@link #createUser(User, CharSequence, boolean)}
514+
* @deprecated Will be removed in version 6.0, replaced by {@link #createUser(User, CharSequence, boolean)}
515515
*/
516516
@Deprecated
517517
public User createUser(User user, CharSequence password, Integer projectsLimit) throws GitLabApiException {
@@ -624,7 +624,7 @@ public User updateUser(User user, CharSequence password) throws GitLabApiExcepti
624624
* @param projectsLimit the maximum number of project
625625
* @return the modified User instance
626626
* @throws GitLabApiException if any exception occurs
627-
* @deprecated Will be removed in version 5.0, replaced by {@link #updateUser(User, CharSequence)}
627+
* @deprecated Will be removed in version 6.0, replaced by {@link #updateUser(User, CharSequence)}
628628
*/
629629
@Deprecated
630630
public User modifyUser(User user, CharSequence password, Integer projectsLimit) throws GitLabApiException {

0 commit comments

Comments
 (0)