Skip to content

Commit

Permalink
update preparing 0.2.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
David DE CARVALHO committed Jan 19, 2023
1 parent be4d1a0 commit 0fa9372
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 8 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
12 changes: 6 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 0fa9372

Please sign in to comment.