This commit is contained in:
parent
62ce92b371
commit
acae9ffb77
|
@ -4,6 +4,12 @@
|
|||
All notable changes to this project will be documented in this file.
|
||||
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [v2.0.3-SNAPSHOT] - 2022-02-09
|
||||
|
||||
#### Enhancements
|
||||
|
||||
- [#24569] Added the phase DRAFT in the enum (also required for #24571)
|
||||
|
||||
## [v2.0.2] - 2022-02-03
|
||||
|
||||
#### Enhancements
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -10,7 +10,7 @@
|
|||
|
||||
<groupId>org.gcube.application</groupId>
|
||||
<artifactId>geoportal-data-common</artifactId>
|
||||
<version>2.0.2</version>
|
||||
<version>2.0.3-SNAPSHOT</version>
|
||||
<description>GeoPortal Data Common is common library used by GUI components developed for GeoNA</description>
|
||||
|
||||
<scm>
|
||||
|
|
|
@ -9,7 +9,8 @@ package org.gcube.application.geoportalcommon.shared.geoportal;
|
|||
*/
|
||||
public enum WORKFLOW_PHASE {
|
||||
|
||||
PUBLISHED("Published"); //Should be always the last one
|
||||
PUBLISHED("Published"), //Should be always the last one
|
||||
DRAFT("Draft");
|
||||
|
||||
private String label;
|
||||
|
||||
|
|
Loading…
Reference in New Issue