3.05.02 release

This commit is contained in:
Zdenko Podobný 2018-06-19 09:24:09 +02:00
parent 23f1fb0428
commit 7e5f0d6fc6
4 changed files with 13 additions and 7 deletions

View File

@ -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

View File

@ -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

View File

@ -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))

View File

@ -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