Skip to content

Commit

Permalink
prepare for 0.7.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergio Freire committed Jul 1, 2022
1 parent 15f952d commit b02a2f9
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
6 changes: 3 additions & 3 deletions BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ Note that the `gpg:sign` goal should be called implicitly by the `package` goal.
If we want to manually validate the signed artifact before calling the `deploy` goal, we can use gpg tool:

```bash
$ gpg --verify target/xray-maven-plugin-0.5.0-SNAPSHOT.jar.asc
$ gpg --verify target/xray-maven-plugin-0.7.0-SNAPSHOT.jar.asc

gpg: assuming signed data in 'target/xray-maven-plugin-0.5.0-SNAPSHOT.jar'
gpg: assuming signed data in 'target/xray-maven-plugin-0.7.0-SNAPSHOT.jar'
gpg: Signature made Sex 3 Jun 11:58:00 2022 WEST
gpg: using EDDSA key A4FC49BB43A2C8B1BD6A34B395B6F2BD5378949F
gpg: Good signature from "Sergio Freire <[email protected]>" [ultimate]
Expand All @@ -91,6 +91,6 @@ Tag can be created at the moment of the creation of the release (easier) or it c
Example:

```bash
git tag -a "0.5.0" -m "v0.5.0"
git tag -a "0.7.0" -m "v0.7.0"
git push origin --tags
```
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

### Fixed

## [0.7.0] - 2022-07-01

### Added

- added "verbose" mode, to debug API requests/responses

### Fixed

- importing of results to Xray DC/server were not passing some arguments (e.g., version, revision, testPlanKey, ...)

## [0.6.0] - 2022-06-08

### Added
Expand Down Expand Up @@ -76,7 +84,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

[unreleased]: https://github.com/Xray-App/xray-maven-plugin/compare/0.6.0...HEAD
[unreleased]: https://github.com/Xray-App/xray-maven-plugin/compare/0.7.0...HEAD
[0.7.0]: https://github.com/Xray-App/xray-maven-plugin/compare/0.7.0...0.7.0
[0.6.0]: https://github.com/Xray-App/xray-maven-plugin/compare/0.5.0...0.6.0
[0.5.0]: https://github.com/Xray-App/xray-maven-plugin/compare/0.4.0...0.5.0
[0.4.0]: https://github.com/Xray-App/xray-maven-plugin/compare/0.3.0...0.4.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Add the following dependency to your pom.xml, where the `<configuration>` is opt
<dependency>
<groupId>app.getxray</groupId>
<artifactId>xray-maven-plugin</artifactId>
<version>0.6.0</version>
<version>0.7.0</version>
<scope>test</scope>
<configuration>
<clientId>215FFD69FE46447280000000000</clientId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>app.getxray</groupId>
<artifactId>xray-maven-plugin</artifactId>
<version>0.7.0-SNAPSHOT</version>
<version>0.7.0</version>
<packaging>maven-plugin</packaging>
<name>xray-maven-plugin</name>
<description>Maven plugin for interacting with Xray (server/datacenter and cloud), used in CI/CD for assisting in test automation flows, such as reporting test results back to Xray and, by consequence, Jira.</description>
Expand Down

0 comments on commit b02a2f9

Please sign in to comment.