Skip to content

Commit c42fa8a

Browse files
Release version 1.4.0
1 parent f43c916 commit c42fa8a

File tree

4 files changed

+21
-17
lines changed

4 files changed

+21
-17
lines changed

CHANGELOG.md

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.4.0] - 2023-10-30
11+
1012
### Added
1113

12-
- [#14](https://github.com/green-code-initiative/ecoCode-javascript/pull/14) Create SonarQube plugin
13-
- [#21](https://github.com/green-code-initiative/ecoCode-javascript/pull/21) Add rule `@ecocode/avoid-css-animations` (EC29)
14-
- [#18](https://github.com/green-code-initiative/ecoCode-javascript/pull/18) Add rule `@ecocode/limit-db-query-results` (EC24)
15-
- [#19](https://github.com/green-code-initiative/ecoCode-javascript/pull/19) Add rule `@ecocode/no-empty-image-src-attribute` (EC25)
16-
- [#20](https://github.com/green-code-initiative/ecoCode-javascript/pull/20) Add rule `@ecocode/prefer-shorthand-css-notations` (EC26)
17-
- [#22](https://github.com/green-code-initiative/ecoCode-javascript/pull/22) Add rule `@ecocode/provide-print-css` (EC30)
18-
- [#25](https://github.com/green-code-initiative/ecoCode-javascript/pull/25) Add license headers
19-
- [ecoCode#207](https://github.com/green-code-initiative/ecoCode/issues/207) Add release tag analyzis on SonarCloud
14+
- [#14](https://github.com/green-code-initiative/ecoCode-javascript/pull/14) Create SonarQube plugin
15+
- [#21](https://github.com/green-code-initiative/ecoCode-javascript/pull/21) Add rule `@ecocode/avoid-css-animations` (EC29)
16+
- [#18](https://github.com/green-code-initiative/ecoCode-javascript/pull/18) Add rule `@ecocode/limit-db-query-results` (EC24)
17+
- [#19](https://github.com/green-code-initiative/ecoCode-javascript/pull/19) Add rule `@ecocode/no-empty-image-src-attribute` (EC25)
18+
- [#20](https://github.com/green-code-initiative/ecoCode-javascript/pull/20) Add rule `@ecocode/prefer-shorthand-css-notations` (EC26)
19+
- [#22](https://github.com/green-code-initiative/ecoCode-javascript/pull/22) Add rule `@ecocode/provide-print-css` (EC30)
20+
- [#25](https://github.com/green-code-initiative/ecoCode-javascript/pull/25) Add license headers
21+
- [ecoCode#207](https://github.com/green-code-initiative/ecoCode/issues/207) Add release tag analyzis on SonarCloud
2022

2123
### Changed
2224

23-
- [#12](https://github.com/green-code-initiative/ecoCode-javascript/issues/12) Pack ESLint plugin into SonarQube plugin
24-
- [#16](https://github.com/green-code-initiative/ecoCode-javascript/pull/16) Use centralized rules specifications
25-
- Update release process through GitHub Actions
26-
- Backport all existing rules into SonarQube plugin
25+
- [#12](https://github.com/green-code-initiative/ecoCode-javascript/issues/12) Pack ESLint plugin into SonarQube plugin
26+
- [#16](https://github.com/green-code-initiative/ecoCode-javascript/pull/16) Use centralized rules specifications
27+
- Update release process through GitHub Actions
28+
- Backport all existing rules into SonarQube plugin
2729

2830
## [0.2.0] - 2023-05-29
2931

@@ -46,7 +48,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4648
- Setup basic coding style tools
4749
- Write complete contributing guide
4850

49-
[Unreleased]: https://github.com/green-code-initiative/ecoCode-linter/compare/eslint-plugin/0.2.0...HEAD
51+
[Unreleased]: https://github.com/green-code-initiative/ecoCode-javascript/compare/1.4.0...HEAD
52+
53+
[1.4.0]: https://github.com/green-code-initiative/ecoCode-javascript/compare/eslint-plugin/0.2.0...1.4.0
5054

5155
[0.2.0]: https://github.com/green-code-initiative/ecoCode-linter/compare/eslint-plugin/0.1.0...eslint-plugin/0.2.0
5256

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ services:
1616
SONAR_ES_BOOTSTRAP_CHECKS_DISABLE: 'true'
1717
volumes:
1818
- type: bind
19-
source: ./sonar-plugin/target/ecocode-javascript-plugin-1.3.1-SNAPSHOT.jar
20-
target: /opt/sonarqube/extensions/plugins/ecocode-javascript-plugin-1.3.1-SNAPSHOT.jar
19+
source: ./sonar-plugin/target/ecocode-javascript-plugin-1.4.0.jar
20+
target: /opt/sonarqube/extensions/plugins/ecocode-javascript-plugin-1.4.0.jar
2121
- "extensions:/opt/sonarqube/extensions"
2222
- "logs:/opt/sonarqube/logs"
2323
- "data:/opt/sonarqube/data"

eslint-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ecocode/eslint-plugin",
3-
"version": "1.3.0",
3+
"version": "1.4.0",
44
"description": "JavaScript linter of ecoCode project",
55
"keywords": [
66
"eslint",

sonar-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>io.ecocode</groupId>
77
<artifactId>ecocode-javascript-plugin</artifactId>
8-
<version>1.3.1-SNAPSHOT</version>
8+
<version>1.4.0</version>
99

1010
<packaging>sonar-plugin</packaging>
1111

0 commit comments

Comments
 (0)