From 0fa93727b315ec7db67adaaf2100a6df124186eb Mon Sep 17 00:00:00 2001 From: David DE CARVALHO Date: Thu, 19 Jan 2023 10:18:18 +0100 Subject: [PATCH] update preparing 0.2.2 release --- CHANGELOG.md | 16 +++++++++++++++- INSTALL.md | 2 +- docker-compose.yml | 12 ++++++------ 3 files changed, 22 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5356e03b4..bcfd0312d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,11 +8,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Added + +### Changed + +## [0.2.2] - 2023-01-19 + +### Added + - [#23](https://github.com/green-code-initiative/ecoCode/pull/23) Add images to the description files. +- [#46](https://github.com/green-code-initiative/ecoCode/pull/46) Add CONTRIBUTING.MD, CODE_OF_CONDUCT.md and CODE_STYLE.md ### Changed + - [#27](https://github.com/green-code-initiative/ecoCode/pull/27) Fix [WARNING] Maven-shade-plugin overlapping classes and upgrade SonarRuntime. +- [#33](https://github.com/green-code-initiative/ecoCode/issues/33) Update plugin description in code - [#42](https://github.com/green-code-initiative/ecoCode/issues/42) Fix Crash SonarQube analysis because of some ClassCast Exceptions +- [#48](https://github.com/green-code-initiative/ecoCode/pull/48) correction SONAR issue info - delete public keyword on tests +- Improve "build" Github actions to execute checks on branches from fork repositories ## [0.2.1] - 2022-12-30 @@ -52,7 +64,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - First official release of ecocode plugins : java plugin, php plugin and python plugin -[unreleased]: https://github.com/green-code-initiative/ecoCode/compare/v0.2.1...HEAD +[unreleased]: https://github.com/green-code-initiative/ecoCode/compare/v0.2.2...HEAD + +[0.2.2]: https://github.com/green-code-initiative/ecoCode/compare/v0.2.1...v0.2.2 [0.2.1]: https://github.com/green-code-initiative/ecoCode/compare/v0.2.0...v0.2.1 diff --git a/INSTALL.md b/INSTALL.md index 5d9f68c10..f367522a5 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -152,7 +152,7 @@ Howto create a release 2. give empty `Unreleased` section 1. in majority cases, old content of `Unreleased` section is now the content of the new `Release X.Y.Z` section 3. add a new section at the bottom of file with new version - 4. update docker-compose.yml with new SNAPSHOT version + 4. update `docker-compose.yml` with new SNAPSHOT version 5. commit these modifications 2. if all is ok, execute `tool_release_1_prepare.sh` to prepare locally the next release and next SNAPSHOT (creation of 2 new commits and a tag) diff --git a/docker-compose.yml b/docker-compose.yml index 91b43ba12..46ff5616f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -16,14 +16,14 @@ services: SONAR_ES_BOOTSTRAP_CHECKS_DISABLE: 'true' volumes: - type: bind - source: ./java-plugin/target/ecocode-java-plugin-0.2.2-SNAPSHOT.jar - target: /opt/sonarqube/extensions/plugins/ecocode-java-plugin-0.2.2-SNAPSHOT.jar + source: ./java-plugin/target/ecocode-java-plugin-0.2.3-SNAPSHOT.jar + target: /opt/sonarqube/extensions/plugins/ecocode-java-plugin-0.2.3-SNAPSHOT.jar - type: bind - source: ./php-plugin/target/ecocode-php-plugin-0.2.2-SNAPSHOT.jar - target: /opt/sonarqube/extensions/plugins/ecocode-php-plugin-0.2.2-SNAPSHOT.jar + source: ./php-plugin/target/ecocode-php-plugin-0.2.3-SNAPSHOT.jar + target: /opt/sonarqube/extensions/plugins/ecocode-php-plugin-0.2.3-SNAPSHOT.jar - type: bind - source: ./python-plugin/target/ecocode-python-plugin-0.2.2-SNAPSHOT.jar - target: /opt/sonarqube/extensions/plugins/ecocode-python-plugin-0.2.2-SNAPSHOT.jar + source: ./python-plugin/target/ecocode-python-plugin-0.2.3-SNAPSHOT.jar + target: /opt/sonarqube/extensions/plugins/ecocode-python-plugin-0.2.3-SNAPSHOT.jar - "extensions:/opt/sonarqube/extensions" - "logs:/opt/sonarqube/logs" - "data:/opt/sonarqube/data"