Skip to content

Commit

Permalink
Prepare 2.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
magnasilvar committed Apr 13, 2020
1 parent 66aafdf commit 01f8e51
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ You can directly run the compiled JAR with the `java -jar` command.

Example :
```powershell
PS C:\GIT\vigenere-cipher> java -jar .\target\vigenere-cipher-2.0.0-SNAPSHOT.jar encrypt --key=MyPrivateKey "Welcome to the Vigenère cipher !"
PS C:\GIT\vigenere-cipher> java -jar .\target\vigenere-cipher-2.0.0.jar encrypt --key=MyPrivateKey "Welcome to the Vigenère cipher !"
Icatwhe ms dlc Hgvvvème vmzlcd !
```

Expand Down Expand Up @@ -78,7 +78,7 @@ This InfoQ article [Build Great Native CLI Apps in Java with Graalvm and Picocli
#### Creating a Native Image
```powershell
native-image --static -jar .\target\vigenere-cipher-2.0.0-SNAPSHOT.jar vigenere
native-image --static -jar .\target\vigenere-cipher-2.0.0.jar vigenere
```

Add `vigenere.exe` parent folder to `PATH` environment variable. That's all ! You can now use **Vigenère cipher CLI** everywhere you want on your computer !
Expand Down Expand Up @@ -122,7 +122,7 @@ Hello !
### Version
```powershell
PS C:\GIT\vigenere-cipher> vigenere --version
2.0.0-SNAPSHOT
2.0.0
```

### Using Aliases
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>fr.oliviermistral</groupId>
<artifactId>vigenere-cipher</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.0.0</version>

<name>vigenere-cipher</name>
<url>https://oliviermistral.fr/</url>
Expand Down

0 comments on commit 01f8e51

Please sign in to comment.