Skip to content

Commit e354169

Browse files
committed
Release 0.6.0
1 parent 50d7054 commit e354169

File tree

9 files changed

+13
-1497
lines changed

9 files changed

+13
-1497
lines changed

README.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ by adding the following `.mvn/extensions.xml` file to the project:
3535
<extension>
3636
<groupId>com.github.pascalgn</groupId>
3737
<artifactId>properties-maven-extension</artifactId>
38-
<version>0.5.1</version>
38+
<version>0.6.0</version>
3939
</extension>
4040
</extensions>
4141
```
@@ -58,10 +58,7 @@ The following properties are currently provided by the extension:
5858
* `git.commit.id`, the full SHA of the HEAD commit (*cbf1b9a1be984a9f61b79a05f23b19f66d533537*)
5959
* `git.commit.id.abbrev`, the abbreviated SHA of the HEAD commit (*cbf1b9a*)
6060
* `git.count`, the current number of commits reachable from HEAD
61-
* `git.commit.color.value`, always the first six characters of the commit SHA (*cbf1b9*)
62-
* `git.commit.color.name`, the name of the closest matching color (*Gossip*)
63-
* `git.commit.color.lightness`, the lightness of the color, in the range 0 - 100 (inclusive)
64-
* `git.commit.color.foreground`, a recommended foreground color, based on the lightness (*000000* or *ffffff*)
61+
* `git.commit.color`, always the first six characters of the commit SHA (*cbf1b9*)
6562
* `git.dir.git`, the absolute path of the repository (*/home/user/workspace/myproject/.git*)
6663
* `git.dir.worktree`, the absolute path of the working tree (*/home/user/workspace/myproject*)
6764
* `git.tag.last`, last tag from sorted tag list (*v1.2.3*)
@@ -78,9 +75,13 @@ or a [pull request](https://github.com/pascalgn/properties-maven-extension/pulls
7875

7976
## Changelog
8077

78+
### Version 0.6.0
79+
80+
- Removed unused color properties
81+
8182
### Version 0.5.1
8283

83-
- Update maven-core dependency to fix security warnings
84+
- Updated maven-core dependency to fix security warnings
8485

8586
### Version 0.5.0
8687

@@ -95,6 +96,4 @@ or a [pull request](https://github.com/pascalgn/properties-maven-extension/pulls
9596

9697
## License
9798

98-
The Properties Maven Extension is licensed under the Apache License, Version 2.0.
99-
100-
This software uses the Resene RGB values list, see [the license](src/main/resources/resene.md) for more details.
99+
[Apache License, Version 2.0](LICENSE)

pom.xml

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

2424
<groupId>com.github.pascalgn</groupId>
2525
<artifactId>properties-maven-extension</artifactId>
26-
<version>0.5.1</version>
26+
<version>0.6.0</version>
2727
<packaging>jar</packaging>
2828

2929
<name>properties-maven-extension</name>

src/it/check-git-properties/.mvn/extensions.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
<extension>
44
<groupId>com.github.pascalgn</groupId>
55
<artifactId>properties-maven-extension</artifactId>
6-
<version>0.4.0</version>
6+
<version>0.6.0</version>
77
</extension>
88
</extensions>

src/it/check-git-properties/pom.xml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,7 @@
3333
<git.commit.id>${git.commit.id}</git.commit.id>
3434
<git.commit.id.abbrev>${git.commit.id.abbrev}</git.commit.id.abbrev>
3535
<git.count>${git.count}</git.count>
36-
<git.commit.color.value>${git.commit.color.value}</git.commit.color.value>
37-
<git.commit.color.name>${git.commit.color.name}</git.commit.color.name>
38-
<git.commit.color.lightness>${git.commit.color.lightness}</git.commit.color.lightness>
39-
<git.commit.color.foreground>${git.commit.color.foreground}</git.commit.color.foreground>
36+
<git.commit.color>${git.commit.color}</git.commit.color>
4037
<git.dir.git>${git.dir.git}</git.dir.git>
4138
<git.dir.worktree>${git.dir.worktree}</git.dir.worktree>
4239
<git.tag.last>${git.tag.last}</git.tag.last>

0 commit comments

Comments
 (0)