From 14a5ba7a61ca6851e676e91bb26d0fccdce78d67 Mon Sep 17 00:00:00 2001 From: Milan Straka Date: Thu, 16 Feb 2023 18:54:45 +0100 Subject: [PATCH] Release version 1.3.0. --- CHANGES | 4 ++-- MANUAL | 2 +- MANUAL.html | 2 +- doc/manual.t2t | 2 +- src/version/version.cpp | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGES b/CHANGES index 6450481..99c5243 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,5 @@ -Version 1.2.1-devel -------------------- +Version 1.3.0 [16 Feb 23] +------------------------- - Get rid of UndefinedBehaviourSanitizer and AddressSanitizer findings. - Add segment_size and learning_rate_final parameters to tokenizer training. - Add several options to udpipe_server. diff --git a/MANUAL b/MANUAL index d478c61..a2dfed4 100644 --- a/MANUAL +++ b/MANUAL @@ -1,5 +1,5 @@ UDPipe 1 -Version 1.2.1-devel +Version 1.3.0 Introduction ============ diff --git a/MANUAL.html b/MANUAL.html index 05bd34c..08a6890 100644 --- a/MANUAL.html +++ b/MANUAL.html @@ -9,7 +9,7 @@
diff --git a/doc/manual.t2t b/doc/manual.t2t index f2eafcf..8ec0e2d 100644 --- a/doc/manual.t2t +++ b/doc/manual.t2t @@ -1,5 +1,5 @@ UDPipe 1 -Version 1.2.1-devel +Version 1.3.0 = Introduction =[introduction] diff --git a/src/version/version.cpp b/src/version/version.cpp index f5b595c..2812113 100644 --- a/src/version/version.cpp +++ b/src/version/version.cpp @@ -19,7 +19,7 @@ namespace udpipe { // Returns current version. version version::current() { - return {1, 2, 1, "devel"}; + return {1, 3, 0, ""}; } // Returns multi-line formated version and copyright string.