Incremented version to 2.1.0

This commit is contained in:
Matt Hill
2015-06-18 23:32:38 -04:00
parent 34072696a8
commit 61a77faaf3
2 changed files with 16 additions and 2 deletions

View File

@@ -1,3 +1,17 @@
openalpr (2.1.0-0.1) experimental; urgency=low
* Non-maintainer upload
* Added per-character details to API output
* Bug fixes
* Added camera calibration utility
* Motion detector for video frames
* Full UTF-8 character support
* Support for South Korean and Australian plates
* Experimental morphological plate detector
* Pattern matching for European countries
-- Matthew Hill <matthill@openalpr.com> Thu, 18 Jun 2015 20:31:00 -0500
openalpr (2.0.1-0.1) experimental; urgency=low openalpr (2.0.1-0.1) experimental; urgency=low
* Non-maintainer upload * Non-maintainer upload

View File

@@ -5,8 +5,8 @@ cmake_minimum_required (VERSION 2.6)
# Set the OpenALPR version in cmake, and also add it as a DEFINE for the code to access # Set the OpenALPR version in cmake, and also add it as a DEFINE for the code to access
SET(OPENALPR_MAJOR_VERSION "2") SET(OPENALPR_MAJOR_VERSION "2")
SET(OPENALPR_MINOR_VERSION "0") SET(OPENALPR_MINOR_VERSION "1")
SET(OPENALPR_PATCH_VERSION "1") SET(OPENALPR_PATCH_VERSION "0")
SET(OPENALPR_VERSION ${OPENALPR_MAJOR_VERSION}.${OPENALPR_MINOR_VERSION}.${OPENALPR_PATCH_VERSION}) SET(OPENALPR_VERSION ${OPENALPR_MAJOR_VERSION}.${OPENALPR_MINOR_VERSION}.${OPENALPR_PATCH_VERSION})
add_definitions( -DOPENALPR_MAJOR_VERSION=${OPENALPR_MAJOR_VERSION}) add_definitions( -DOPENALPR_MAJOR_VERSION=${OPENALPR_MAJOR_VERSION})