Skip to content

Commit

Permalink
3.05.01 release
Browse files Browse the repository at this point in the history
  • Loading branch information
zdenop committed Jun 1, 2017
1 parent 2b1c01d commit 2158661
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2017-06-01 - V3.05.01
* Fixed several build issues
* Fixed C-API
* Backport pdfrenderer changes
* Code clean up

2017-02-16 - V3.05.00
* Made some fine tuning to the hOCR output.
* Added TSV as another optional output format.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
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.00, released in February 2017.
The latest stable version is 3.05.01, released on 1st June 2017.

# Brief history

Expand Down
4 changes: 2 additions & 2 deletions api/baseapi.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
#ifndef TESSERACT_API_BASEAPI_H__
#define TESSERACT_API_BASEAPI_H__

#define TESSERACT_VERSION_STR "3.05.00"
#define TESSERACT_VERSION 0x030500
#define TESSERACT_VERSION_STR "3.05.01"
#define TESSERACT_VERSION 0x030501
#define MAKE_VERSION(major, minor, patch) (((major) << 16) | ((minor) << 8) | \
(patch))

Expand Down
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Initialization
# ----------------------------------------
AC_PREREQ([2.59])
AC_INIT([tesseract], [3.05.00], [https://github.com/tesseract-ocr/tesseract/issues])
AC_INIT([tesseract], [3.05.01], [https://github.com/tesseract-ocr/tesseract/issues])
AC_PROG_CXX([g++ clang++])
AC_LANG([C++])
AC_LANG_COMPILER_REQUIRE
Expand All @@ -19,7 +19,7 @@ AC_PREFIX_DEFAULT([/usr/local])
# Define date of package, etc. Could be useful in auto-generated
# documentation.
PACKAGE_YEAR=2017
PACKAGE_DATE="02/16"
PACKAGE_DATE="06/01"

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=0
GENERIC_MICRO_VERSION=1

# API version (often = GENERIC_MAJOR_VERSION.GENERIC_MINOR_VERSION)
GENERIC_API_VERSION=$GENERIC_MAJOR_VERSION.$GENERIC_MINOR_VERSION
Expand Down

0 comments on commit 2158661

Please sign in to comment.