Fixed CHANGELOG
This commit is contained in:
parent
8247359abd
commit
27d2b9a215
|
@ -2,9 +2,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|||
|
||||
# Changelog for gCube Catalogue (gCat) API
|
||||
|
||||
## [v1.2.2-SNAPSHOT]
|
||||
|
||||
## [v2.0.0-SNAPSHOT] [r5.0.0] -
|
||||
|
||||
- Added count method for Item collection [#20627]
|
||||
- Added count method for Organization, Group and Profile collection [#20629]
|
||||
- Switched JSON management to gcube-jackson [#19735]
|
||||
|
||||
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -9,7 +9,7 @@
|
|||
</parent>
|
||||
<groupId>org.gcube.data-catalogue</groupId>
|
||||
<artifactId>gcat-api</artifactId>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<version>1.2.2-SNAPSHOT</version>
|
||||
<name>gCube Catalogue (gCat) API</name>
|
||||
<description>gCube Catalogue (gCat) API is a library containing classes shared across gcat* components</description>
|
||||
<properties>
|
||||
|
|
|
@ -10,7 +10,7 @@ public class GCatConstants {
|
|||
public static final String APPLICATION_JSON_CHARSET_UTF_8 = "application/json;charset=UTF-8";
|
||||
public static final String LIMIT_PARAMETER = "limit";
|
||||
public static final String OFFSET_PARAMETER = "offset";
|
||||
public static final String COUNT_ONLY_PARAMETER = "countOnly";
|
||||
public static final String COUNT_PARAMETER = "count";
|
||||
|
||||
public static final String COUNT_KEY = "count";
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ package org.gcube.gcat.api.interfaces;
|
|||
*/
|
||||
public interface License {
|
||||
|
||||
String LICENSES = "licenses";
|
||||
public static final String LICENSES = "licenses";
|
||||
|
||||
public String list();
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ package org.gcube.gcat.api.interfaces;
|
|||
*/
|
||||
public interface Namespace {
|
||||
|
||||
String NAMESPACES = "namespaces";
|
||||
public static final String NAMESPACES = "namespaces";
|
||||
|
||||
public String list();
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ package org.gcube.gcat.api.interfaces;
|
|||
*/
|
||||
public interface Resource<C,D> {
|
||||
|
||||
String RESOURCES = "resources";
|
||||
public static final String RESOURCES = "resources";
|
||||
|
||||
public String list(String itemID);
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ package org.gcube.gcat.api.interfaces;
|
|||
*/
|
||||
public interface User<C,D> extends CRUD<C,D> {
|
||||
|
||||
String USERS = "users";
|
||||
public static final String USERS = "users";
|
||||
|
||||
public String list();
|
||||
|
||||
|
|
Loading…
Reference in New Issue