Skip to content

Commit

Permalink
Set version to 1.35-dev.
Browse files Browse the repository at this point in the history
  • Loading branch information
lballabio committed Apr 24, 2024
1 parent 83b7ec4 commit 3013119
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Expand Up @@ -5,14 +5,14 @@ cmake_policy(SET CMP0091 NEW)

# Version info
set(QUANTLIB_VERSION_MAJOR 1)
set(QUANTLIB_VERSION_MINOR 34)
set(QUANTLIB_VERSION_MINOR 35)
set(QUANTLIB_VERSION_PATCH 0)
set(QUANTLIB_VERSION ${QUANTLIB_VERSION_MAJOR}.${QUANTLIB_VERSION_MINOR}.${QUANTLIB_VERSION_PATCH})

# Project Info
set(PACKAGE_NAME "QuantLib")
set(PACKAGE_VERSION "${QUANTLIB_VERSION}")
set(PACKAGE_VERSION_HEX "0x013400f0")
set(PACKAGE_VERSION "${QUANTLIB_VERSION}-dev")
set(PACKAGE_VERSION_HEX "0x01350000")
set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
set(PACKAGE_TARNAME "${PACKAGE_NAME}-${PACKAGE_VERSION}")
set(PACKAGE_BUGREPORT "https://github.com/lballabio/QuantLib/issues/")
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
@@ -1,5 +1,5 @@
# Process this file with autoconf to produce a configure script.
AC_INIT([QuantLib], [1.34],
AC_INIT([QuantLib], [1.35-dev],
[quantlib-dev@lists.sourceforge.net],
[QuantLib])
AC_PREREQ(2.62)
Expand Down
4 changes: 2 additions & 2 deletions ql/version.hpp
Expand Up @@ -31,10 +31,10 @@
/*! @{ */

//! version string
#define QL_VERSION "1.34"
#define QL_VERSION "1.35-dev"

//! version hexadecimal number
#define QL_HEX_VERSION 0x013400f0
#define QL_HEX_VERSION 0x01350000

/*! @} */

Expand Down

0 comments on commit 3013119

Please sign in to comment.