Release v2.0.0

Change-Id: I4aac363c1f4bbd4109d0430b1969b48e7271e266
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2dc68ea..c48802a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,7 @@
 # Changelog
 
-## 2.0.0 [Unreleased]
+## 2.0.0
+* Dependencies updated
 * Tokenizer and sentence splitter for English (`-l en` option) added
 * Tokenizer and sentence splitter for French (`-l fr` option) added
 * Support for adding more languages
diff --git a/Readme.md b/Readme.md
index 4acdd12..4a3c88b 100644
--- a/Readme.md
+++ b/Readme.md
@@ -46,7 +46,7 @@
 #### Command Line Invocation
 ```
 $ echo -n -e 'This is a text.\x0a\x04\x0aAnd this is another text.\n\x04\n' |\
-     java -jar target/KorAP-Tokenizer-2.0.0-SNAPSHOT-standalone.jar  --positions
+     java -jar target/KorAP-Tokenizer-2.0.0-standalone.jar  --positions
 This
 is
 a
@@ -64,7 +64,7 @@
 #### Invocation with Sentence Splitting
 ```
 echo -n -e ' This ist a start of a text. And this is a sentence!!! But what the hack????\x0a\x04\x0aAnd this is another text.'  |\
-   java -jar target/KorAP-Tokenizer-2.0.0-SNAPSHOT-standalone.jar --no-tokens --positions --sentence-boundaries
+   java -jar target/KorAP-Tokenizer-2.0.0-standalone.jar --no-tokens --positions --sentence-boundaries
 1 5 6 9 10 11 12 17 18 20 21 22 23 27 27 28 29 32 33 37 38 40 41 42 43 51 51 54 55 58 59 63 64 67 68 72 72 76
 1 28 29 54 55 76
 0 3 4 8 9 11 12 19 20 24 24 25
diff --git a/pom.xml b/pom.xml
index 1ff8f9b..9a9b23c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,11 +6,10 @@
 
     <groupId>groupId</groupId>
     <artifactId>KorAP-Tokenizer</artifactId>
-    <version>2.0.0-SNAPSHOT</version>
+    <version>2.0.0</version>
 
     <properties>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-        <jackson.version>[2.10.3,)</jackson.version>
     </properties>
 
     <build>
diff --git a/src/main/java/de/ids_mannheim/korap/tokenizer/Main.java b/src/main/java/de/ids_mannheim/korap/tokenizer/Main.java
index c3aa101..9a275c6 100644
--- a/src/main/java/de/ids_mannheim/korap/tokenizer/Main.java
+++ b/src/main/java/de/ids_mannheim/korap/tokenizer/Main.java
@@ -14,7 +14,7 @@
 import java.util.stream.Collectors;
 
 @CommandLine.Command(mixinStandardHelpOptions = true,
-        name = "koraptokenizer", version = "2.0.0-SNAPSHOT", description = "Tokenizes (and sentence splits) text input.")
+        name = "koraptokenizer", version = "2.0.0", description = "Tokenizes (and sentence splits) text input.")
 public class Main implements Callable<Integer> {
 
     public final String DEFAULT_LANGUAGE = "de";