diff --git a/CHANGELOG.md b/CHANGELOG.md index 12d791a..ddb5f77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -# Changelog for Authorization utils +# Changelog for Authorization Utils + +## [v2.1.0-SNAPSHOT] + +- Added remove() method in SecretManagerProvider +- Enhanced gcube-bom version ## [v2.0.0] diff --git a/README.md b/README.md index 9df9587..11f7daf 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ N/A ## Change log -See [Releases](https://code-repo.d4science.org/gCubeSystem/gcat/releases). +See [CHANGELOG.md](CHANGELOG.md). ## Authors @@ -41,6 +41,7 @@ This project is licensed under the EUPL V.1.1 License - see the [LICENSE.md](LIC ## About the gCube Framework + This software is part of the [gCubeFramework](https://www.gcube-system.org/ "gCubeFramework"): an open-source software toolkit used for building and operating Hybrid Data Infrastructures enabling the dynamic deployment of Virtual Research Environments diff --git a/pom.xml b/pom.xml index f44961a..6c8e86e 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ org.gcube.common authorization-utils - 2.0.0 + 2.1.0-SNAPSHOT UTF-8 @@ -27,7 +27,7 @@ org.gcube.distribution gcube-bom - 2.0.2 + 2.1.0 pom import diff --git a/src/main/java/org/gcube/common/authorization/utils/manager/SecretManagerProvider.java b/src/main/java/org/gcube/common/authorization/utils/manager/SecretManagerProvider.java index 42cc309..e765b46 100644 --- a/src/main/java/org/gcube/common/authorization/utils/manager/SecretManagerProvider.java +++ b/src/main/java/org/gcube/common/authorization/utils/manager/SecretManagerProvider.java @@ -36,4 +36,7 @@ public class SecretManagerProvider { thread.remove(); } + public void remove(){ + thread.remove(); + } }