From 7e5f0d6fc6b214093d5b660cdcf6ce36bbbdd30f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zdenko=20Podobn=C3=BD?= Date: Tue, 19 Jun 2018 09:24:09 +0200 Subject: [PATCH] 3.05.02 release --- ChangeLog | 6 ++++++ README.md | 2 +- api/baseapi.h | 4 ++-- configure.ac | 8 ++++---- 4 files changed, 13 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index 327a5f4755..eaf0064925 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2018-06-19 - V3.05.02 + * Fixed linking with Leptonica + * Fix build for Mingw-w64 + * Fix Training error "Couldn't find a matching blob" + * Fix unterminated string + 2017-06-01 - V3.05.01 * Fixed several build issues * Fixed C-API diff --git a/README.md b/README.md index 5c8fe20369..09e963833f 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ This project does not include a GUI application. If you need one, please see the You should note that in many cases, in order to get better OCR results, you'll need to [improve the quality](https://github.com/tesseract-ocr/tesseract/wiki/ImproveQuality) of the image you are giving Tesseract. -The latest stable version is 3.05.01, released on 1st June 2017. +The latest stable version is 3.05.02, released on 19th June 2018. # Brief history diff --git a/api/baseapi.h b/api/baseapi.h index c481b6243e..12cb279924 100644 --- a/api/baseapi.h +++ b/api/baseapi.h @@ -20,8 +20,8 @@ #ifndef TESSERACT_API_BASEAPI_H__ #define TESSERACT_API_BASEAPI_H__ -#define TESSERACT_VERSION_STR "3.05.01" -#define TESSERACT_VERSION 0x030501 +#define TESSERACT_VERSION_STR "3.05.02" +#define TESSERACT_VERSION 0x030502 #define MAKE_VERSION(major, minor, patch) (((major) << 16) | ((minor) << 8) | \ (patch)) diff --git a/configure.ac b/configure.ac index ef3f556027..b9a8be8953 100644 --- a/configure.ac +++ b/configure.ac @@ -6,7 +6,7 @@ # Initialization # ---------------------------------------- AC_PREREQ([2.59]) -AC_INIT([tesseract], [3.05.01], [https://github.com/tesseract-ocr/tesseract/issues]) +AC_INIT([tesseract], [3.05.02], [https://github.com/tesseract-ocr/tesseract/issues]) AC_PROG_CXX([g++ clang++]) AC_LANG([C++]) AC_LANG_COMPILER_REQUIRE @@ -18,8 +18,8 @@ AC_PREFIX_DEFAULT([/usr/local]) # Define date of package, etc. Could be useful in auto-generated # documentation. -PACKAGE_YEAR=2017 -PACKAGE_DATE="06/01" +PACKAGE_YEAR=2018 +PACKAGE_DATE="06/19" abs_top_srcdir=`AS_DIRNAME([$0])` gitrev="`git --git-dir=${abs_top_srcdir}/.git --work-tree=${abs_top_srcdir} describe --always --tags`" @@ -44,7 +44,7 @@ GENERIC_LIBRARY_NAME=tesseract # Release versioning GENERIC_MAJOR_VERSION=3 GENERIC_MINOR_VERSION=5 -GENERIC_MICRO_VERSION=1 +GENERIC_MICRO_VERSION=2 # API version (often = GENERIC_MAJOR_VERSION.GENERIC_MINOR_VERSION) GENERIC_API_VERSION=$GENERIC_MAJOR_VERSION.$GENERIC_MINOR_VERSION