Skip to content

Commit

Permalink
Update README and use correct future version in CLI tool
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Pizzo committed Jul 22, 2024
1 parent f89a1d6 commit 403b458
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
18 changes: 14 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ Made with [contrib.rocks](https://contrib.rocks).

Once you have built and released the application, you can use the following commands to deploy the application to your Mac, Linux or Windows machine.



```shell
brew tap vincentjames501/tap
brew install codeowners-cli
Expand Down Expand Up @@ -151,7 +149,7 @@ To use with Pre-commit, simply add the following to your `.pre-commit-config.yam
```yaml
- repo: https://github.com/vincentjames501/codeowners-cli
rev: v0.0.4
rev: v0.0.8
hooks:
- id: codeowners-cli
args: [ "list", "--unowned-files", "--fail-on-matches" ]
Expand All @@ -161,12 +159,24 @@ To use with Pre-commit, simply add the following to your `.pre-commit-config.yam
```yaml
- repo: https://github.com/vincentjames501/codeowners-cli
rev: v0.0.4
rev: v0.0.8
hooks:
- id: codeowners-cli
args: [ "verify" ]
```
## As Maven Package
This package is also published to Maven for more advanced use cases:
```xml
<dependency>
<groupId>io.github.vincentjames501</groupId>
<artifactId>codeowners-cli</artifactId>
<version>0.0.8</version>
</dependency>
```
## Building
This is powered by GraalVM native image and distribution using JReleaser and GitHub Actions and Workflow.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* @version 0.0.1
* @since 2024-July-15
*/
@Command(name = "codeowners-cli", mixinStandardHelpOptions = true, version = "codeowners-cli 0.0.1", description = "Process CODEOWNER files", subcommands = {
@Command(name = "codeowners-cli", mixinStandardHelpOptions = true, version = "codeowners-cli 0.0.9", description = "Process CODEOWNER files", subcommands = {
HelpCommand.class,
ListCodeOwners.class,
Verify.class
Expand Down

0 comments on commit 403b458

Please sign in to comment.