Skip to content

Commit

Permalink
Issue #1257 - version 15.0 added to enum
Browse files Browse the repository at this point in the history
  • Loading branch information
nbartels committed Oct 17, 2022
1 parent e610308 commit e34d865
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/main/java/com/restfb/Version.java
Expand Up @@ -128,19 +128,26 @@ public enum Version {
VERSION_13_0("v13.0"),

/**
* <tt>Graph API 14.0</tt>, available at least until May 2025
* <tt>Graph API 14.0</tt>, available until September 17th, 2024
*
* @since May 25th, 2022
*/
VERSION_14_0("v14.0"),

/**
* <tt>Graph API 14.0</tt>, available at least until September 2025
*
* @since September 17th, 2022
*/
VERSION_15_0("v15.0"),

/**
* convenience enum to provide simple access to the latest supported Graph API Version.
* <p>
* the current version is <tt>Graph API 14.0</tt>
* </p>
*/
LATEST("v14.0");
LATEST("v15.0");

private final String urlElement;

Expand Down

0 comments on commit e34d865

Please sign in to comment.