Skip to content

Commit 1aeacf5

Browse files
committed
NameApiPortUrlFactory has version 5.3 as release candidate.
1 parent 44c848d commit 1aeacf5

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

src/main/java/org/nameapi/client/lib/NameApiPortUrlFactory.java

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,28 +25,31 @@ public static NameApiPortUrlFactory versionLatestStable() {
2525
* This is always set to the latest release candidate, that is the version right before it becomes the latest stable.
2626
* Such a version does not always exist. After successful testing, it becomes the live version.
2727
*
28-
* Currently this is version 5.0.
28+
* Currently this is version 5.3.
2929
*/
3030
public static NameApiPortUrlFactory versionLatestReleaseCandidate() {
31-
return version5_0();
31+
return version5_3();
3232
}
3333

3434
/**
3535
* This is always set to the current main development version.
3636
* You do not necessarily have access to this.
3737
*
38-
* Currently this is version 5.0.
38+
* Currently this is version 5.3.
3939
*/
4040
public static NameApiPortUrlFactory versionLatestDevelopment() {
41-
return version5_0();
41+
return version5_3();
4242
}
4343

4444
public static NameApiPortUrlFactory version5_0() {
4545
return new NameApiPortUrlFactory("5.0");
4646
}
47+
public static NameApiPortUrlFactory version5_3() {
48+
return new NameApiPortUrlFactory("5.3");
49+
}
4750

4851
/**
49-
* @param version for example "5.0".
52+
* @param version for example "5.3".
5053
*/
5154
private NameApiPortUrlFactory(@NotNull String version) {
5255
this.restPrefix = "/rest/v"+version;

0 commit comments

Comments
 (0)