aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLauro Neto <lauro.neto@openbossa.org>2009-09-02 18:27:25 -0300
committerLauro Neto <lauro.neto@openbossa.org>2009-09-02 18:27:25 -0300
commitac4305ea901d7bfb806dadfcdf4ea047d6c6035c (patch)
tree900cf7e1636cc7e375e76a7cbb3f574dfb50a496
parentac1ca6f62d563c34460bc098714fc9d228235713 (diff)
Bump version to 0.3.1
The previous commit bumped to a wrong version. This commit also adds micro version.
-rw-r--r--CMakeLists.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 6c244a2a6..9f9a72809 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -11,8 +11,9 @@ pkg_check_modules(LIBXSLT REQUIRED libxslt>=1.1.19)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -DAPIEXTRACTOR_ENABLE_DUPLICATE_ENUM_VALUES")
set(apiextractor_MAJOR_VERSION 0)
-set(apiextractor_MINOR_VERSION 4)
-set(apiextractor_VERSION "${apiextractor_MAJOR_VERSION}.${apiextractor_MINOR_VERSION}")
+set(apiextractor_MINOR_VERSION 3)
+set(apiextractor_MICRO_VERSION 1)
+set(apiextractor_VERSION "${apiextractor_MAJOR_VERSION}.${apiextractor_MINOR_VERSION}.${apiextractor_MICRO_VERSION}")
configure_file(apiextractorversion.h.in ${CMAKE_CURRENT_BINARY_DIR}/apiextractorversion.h @ONLY)
set(QT_USE_QTCORE 1)
set(QT_USE_QTXML 1)