Bump version to 0.5.0

Change-Id: I080b082f95936c941a8cc782ffee47e07f550b96
diff --git a/Changes b/Changes
index f02fa14..f87e8c3 100644
--- a/Changes
+++ b/Changes
@@ -1,12 +1,15 @@
-        - --word2vec|lm-training-data option added to print word2vec input format
-        - --extract-metadata-regex added to extract some metadata values as context input for language model training
-        - by default sentence boundary information is now read from structure.xml files (use --s-bounds-from-morpho otherwise)
-        - korapxml2conllu: use morpho.xml if present when run on base zips
-        - korapxml2conllu: new option -c <columns>
-        - conllu2korapxml: ignore _-lemmas
-        - conllu2korapxml: handle UDPipe comments
-        - conllu2korapxml: ignore non-interpretable comments
-        - connlu2korapxml: Improve error handling for missing text ids and offsets
+0.5.0 2022-09-29
+        - korapxml2conllu:
+            - --word2vec|lm-training-data option added to print word2vec input format
+            - --extract-metadata-regex added to extract some metadata values as context input for language model training
+            - by default sentence boundary information is now read from structure.xml files (use --s-bounds-from-morpho otherwise)
+            - use morpho.xml if present when run on base zips
+            - new option -c <columns>
+        - conllu2korapxml:
+            - ignore _-lemmas
+            - handle UDPipe comments
+            - ignore non-interpretable comments
+            - improve error handling for missing text ids and offsets
 
 0.4.1 2021-07-31
         - korapxml2conllu: fix patterns not extracted for last texts in archive
diff --git a/script/conllu2korapxml b/script/conllu2korapxml
index 33e042c..15e396c 100755
--- a/script/conllu2korapxml
+++ b/script/conllu2korapxml
@@ -14,7 +14,7 @@
 my %opts;
 my %processedFilenames;
 
-our $VERSION = '0.4.1.9000';
+our $VERSION = '0.5.0';
 our $VERSION_MSG = "\nconllu2korapxml - v$VERSION\n";
 
 use constant {
diff --git a/script/korapxml2conllu b/script/korapxml2conllu
index e870bf8..5e91c06 100755
--- a/script/korapxml2conllu
+++ b/script/korapxml2conllu
@@ -26,7 +26,7 @@
 
 my $lm_training_data = 0;
 
-our $VERSION = '0.4.1.9000';
+our $VERSION = '0.5.0';
 
 our $VERSION_MSG = "\nkorapxml2conllu - v$VERSION\n";