Skip to content

Commit

Permalink
3.05.02 release
Browse files Browse the repository at this point in the history
  • Loading branch information
zdenop committed Jun 19, 2018
1 parent 23f1fb0 commit 7e5f0d6
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions 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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions api/baseapi.h
Expand Up @@ -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))

Expand Down
8 changes: 4 additions & 4 deletions configure.ac
Expand Up @@ -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
Expand All @@ -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`"
Expand All @@ -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
Expand Down

0 comments on commit 7e5f0d6

Please sign in to comment.