From 01f8e51ab20e2a89da2bc75a020d687397811f50 Mon Sep 17 00:00:00 2001
From: magnasilvar <3359919+magnasilvar@users.noreply.github.com>
Date: Mon, 13 Apr 2020 12:23:45 +0200
Subject: [PATCH] Prepare 2.0.0 release
---
README.md | 6 +++---
pom.xml | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/README.md b/README.md
index dfa307d..bcb38cd 100644
--- a/README.md
+++ b/README.md
@@ -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 !
```
@@ -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 !
@@ -122,7 +122,7 @@ Hello !
### Version
```powershell
PS C:\GIT\vigenere-cipher> vigenere --version
-2.0.0-SNAPSHOT
+2.0.0
```
### Using Aliases
diff --git a/pom.xml b/pom.xml
index e28ee80..aeb4ac0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
fr.oliviermistral
vigenere-cipher
- 2.0.0-SNAPSHOT
+ 2.0.0
vigenere-cipher
https://oliviermistral.fr/