Skip to content

Commit ed85feb

Browse files
committed
readme update for v2.16 release [ci skip]
1 parent 1f7941a commit ed85feb

File tree

1 file changed

+20
-8
lines changed

1 file changed

+20
-8
lines changed

README.md

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# DigitalOcean API Client [![Build Status](https://travis-ci.org/jeevatkm/digitalocean-api-java.svg?branch=master)](https://travis-ci.org/jeevatkm/digitalocean-api-java) [![Version](https://img.shields.io/badge/version-2.15-blue.svg)](https://github.com/jeevatkm/digitalocean-api-java/releases/latest) [![License](https://img.shields.io/github/license/jeevatkm/digitalocean-api-java.svg)](LICENSE)
1+
# DigitalOcean API Client [![Build Status](https://travis-ci.org/jeevatkm/digitalocean-api-java.svg?branch=master)](https://travis-ci.org/jeevatkm/digitalocean-api-java) [![Version](https://img.shields.io/badge/version-2.16-blue.svg)](https://github.com/jeevatkm/digitalocean-api-java/releases/latest) [![License](https://img.shields.io/github/license/jeevatkm/digitalocean-api-java.svg)](LICENSE)
22

3-
***v2.15 [released](https://github.com/jeevatkm/digitalocean-api-java/releases/latest) and tagged on May 05, 2018***
3+
***v2.16 [released](https://github.com/jeevatkm/digitalocean-api-java/releases/latest) and tagged on Sep 03, 2018***
44

55
Simple & Lightweight API client library for Enterprise Application or Utilities Integration around [DigitalOcean RESTful APIs][1]. You can use this library with project based (JVM hosted languages) on Java, Groovy, Scala, Clojure, etc.
66

@@ -17,22 +17,22 @@ For handy use, DigitalOcean API Client library project dependency definition pro
1717
<dependency>
1818
<groupId>com.myjeeva.digitalocean</groupId>
1919
<artifactId>digitalocean-api-client</artifactId>
20-
<version>2.15</version>
20+
<version>2.16</version>
2121
</dependency>
2222
```
2323
**Gradle/Grails dependency**
2424
```shell
25-
compile 'com.myjeeva.digitalocean:digitalocean-api-client:2.15'
25+
compile 'com.myjeeva.digitalocean:digitalocean-api-client:2.16'
2626
```
2727
**Groovy Grape**
2828
```groovy
2929
@Grapes(
30-
@Grab(group='com.myjeeva.digitalocean', module='digitalocean-api-client', version='2.15')
30+
@Grab(group='com.myjeeva.digitalocean', module='digitalocean-api-client', version='2.16')
3131
)
3232
```
3333
**Scala SBT**
3434
```shell
35-
libraryDependencies += "com.myjeeva.digitalocean" % "digitalocean-api-client" % "2.15"
35+
libraryDependencies += "com.myjeeva.digitalocean" % "digitalocean-api-client" % "2.16"
3636
```
3737

3838
**Note:** For Android projects, kindly include the `httpclient-android` library explicitly in your project dependencies.
@@ -137,6 +137,18 @@ DigitalOcean API Client uses [GitHub’s integrated issue tracking system][3] to
137137

138138
# Supported API's and Revision Logs
139139

140+
* **Released in v2.16**
141+
* Added new endpoint support `/v2/firewalls/*` [#83](https://github.com/jeevatkm/digitalocean-api-java/issues/83), PR [#85](https://github.com/jeevatkm/digitalocean-api-java/pull/85), PR [#87](https://github.com/jeevatkm/digitalocean-api-java/pull/87) (@andreybleme)
142+
* Firewalls
143+
<pre>
144+
Firewalls getAvailableFirewalls(Integer pageNo, Integer perPage)
145+
Firewall getFirewallInfo(String firewallId)
146+
Firewall createFirewall(Firewall firewall)
147+
Firewall updateFirewall(Firewall firewall)
148+
Delete deleteFirewall(String firewallId)
149+
</pre>
150+
* Links and Meta information made available on POJO [#84](https://github.com/jeevatkm/digitalocean-api-java/issues/84) @jeevatkm
151+
* Added method `getAvailableDropletsByTagName` [#86](https://github.com/jeevatkm/digitalocean-api-java/issues/86) #jeevatkm
140152
* **Released in v2.15**
141153
* Added CAA support in `DomainRecord` [#81](https://github.com/jeevatkm/digitalocean-api-java/issues/81) @jeevatkm
142154
* Bug fix: Pagination fix for `getAvailableRegions`, `getAvailableSizes`, `getAvailableDomains`, and `getAvailableKeys` [#80](https://github.com/jeevatkm/digitalocean-api-java/issues/80) @jeevatkm
@@ -368,7 +380,7 @@ DigitalOcean API Client - [MIT License][6].
368380

369381

370382
[1]: https://developers.digitalocean.com
371-
[2]: https://docs.myjeeva.com/javadoc/digitalocean-api-client/2.15/
383+
[2]: https://docs.myjeeva.com/javadoc/digitalocean-api-client/2.16/
372384
[3]: https://github.com/jeevatkm/digitalocean-api-java/issues
373385
[4]: https://oss.sonatype.org/content/repositories/snapshots/com/myjeeva/digitalocean/digitalocean-api-client/
374386
[5]: https://myjeeva.com
@@ -382,4 +394,4 @@ DigitalOcean API Client - [MIT License][6].
382394
[13]: https://raw.githubusercontent.com/darcyliu/google-styleguide/master/eclipse-java-google-style.xml
383395
[14]: https://developers.digitalocean.com/documentation/changelog/api-v2/add-status-to-account/
384396
[15]: https://developers.digitalocean.com/documentation/changelog/api-v2/deprecate-final-snaphots/
385-
[16]: http://search.maven.org/remotecontent?filepath=com/myjeeva/digitalocean/digitalocean-api-client/2.15/digitalocean-api-client-2.15.jar
397+
[16]: http://search.maven.org/remotecontent?filepath=com/myjeeva/digitalocean/digitalocean-api-client/2.16/digitalocean-api-client-2.16.jar

0 commit comments

Comments
 (0)