Skip to content

Commit 259dcad

Browse files
authored
Updates for release 4.8.7
1 parent ff28449 commit 259dcad

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ To utilize the GitLab API for Java in your project, simply add the following dep
1111
```java
1212
dependencies {
1313
...
14-
compile group: 'org.gitlab4j', name: 'gitlab4j-api', version: '4.8.5'
14+
compile group: 'org.gitlab4j', name: 'gitlab4j-api', version: '4.8.7'
1515
}
1616
```
1717

@@ -20,7 +20,7 @@ dependencies {
2020
<dependency>
2121
<groupId>org.gitlab4j</groupId>
2222
<artifactId>gitlab4j-api</artifactId>
23-
<version>4.8.5</version>
23+
<version>4.8.7</version>
2424
</dependency>
2525
```
2626

@@ -209,7 +209,7 @@ List<Job> jobs = gitLabApi.getJobApi().getJobs(1234);
209209
List<Label> labels = gitLabApi.getLabelsApi().getLabels(1234);
210210
```
211211

212-
### MergeRequestApi
212+
#### MergeRequestApi
213213
```java
214214
// Get a list of the merge requests for the specified project
215215
List<MergeRequest> mergeRequests = gitLabApi.getMergeRequestApi().getMergeRequests(1234);
@@ -283,7 +283,7 @@ RepositoryFile file = gitLabApi.getRepositoryFileApi().getFile("file-path", 1234
283283
#### RunnersApi
284284
```java
285285
// Get All Runners.
286-
List<Runner> runners = api.getRunnersApi().getAllRunners();
286+
List<Runner> runners = gitLabApi.getRunnersApi().getAllRunners();
287287
```
288288

289289
#### ServicesApi

0 commit comments

Comments
 (0)