diff --git a/README.md b/README.md
index c2ff76b2ffd3a6f3bff9351b413acdc8e961087e..cad8781184b2917719ad564757b2e2af6a170149 100644
--- a/README.md
+++ b/README.md
@@ -11,7 +11,7 @@ To utilize the GitLab API for Java in your project, simply add the following dep
```java
dependencies {
...
- compile group: 'org.gitlab4j', name: 'gitlab4j-api', version: '4.9.12'
+ compile group: 'org.gitlab4j', name: 'gitlab4j-api', version: '4.9.14'
}
```
@@ -22,7 +22,7 @@ dependencies {
org.gitlab4j
gitlab4j-api
- 4.9.12
+ 4.9.14
```
@@ -225,6 +225,7 @@ The API has been broken up into sub API classes to make it easier to learn and t
[SnippetsApi](#snippetsapi)
[SystemHooksApi](#systemhooksapi)
[UserApi](#userapi)
+ [WikisApi](#wikisapi)
### Sub API Examples
@@ -421,3 +422,9 @@ String password = null;
boolean sendResetPasswordEmail = true;
gitLabApi.getUserApi().createUser(userConfig, password, sendResetPasswordEmail);
```
+
+#### WikisApi
+```java
+// Get a list of pages in project wiki
+List wikiPages = gitLabApi.getWikisApi().getPages();
+```