From 61a77faaf348e2fd2056ee1710c47ae8d0b1bda4 Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Thu, 18 Jun 2015 23:32:38 -0400 Subject: [PATCH] Incremented version to 2.1.0 --- distros/debian/changelog | 14 ++++++++++++++ src/CMakeLists.txt | 4 ++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/distros/debian/changelog b/distros/debian/changelog index 50fe0b0..07d5f5e 100644 --- a/distros/debian/changelog +++ b/distros/debian/changelog @@ -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 Thu, 18 Jun 2015 20:31:00 -0500 + openalpr (2.0.1-0.1) experimental; urgency=low * Non-maintainer upload diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index e55bbff..f1104f6 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -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(OPENALPR_MAJOR_VERSION "2") -SET(OPENALPR_MINOR_VERSION "0") -SET(OPENALPR_PATCH_VERSION "1") +SET(OPENALPR_MINOR_VERSION "1") +SET(OPENALPR_PATCH_VERSION "0") SET(OPENALPR_VERSION ${OPENALPR_MAJOR_VERSION}.${OPENALPR_MINOR_VERSION}.${OPENALPR_PATCH_VERSION}) add_definitions( -DOPENALPR_MAJOR_VERSION=${OPENALPR_MAJOR_VERSION})