Skip to content

Commit 5d4fb12

Browse files
committed
Release changes. We are going to be 0.1.5 because 1.4 is already out there.
1 parent 20ae0b6 commit 5d4fb12

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

CMakeLists.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@ set(CMAKE_LEGACY_CYGWIN_WIN32 0)
77

88
project(libpoly C)
99

10-
option(LIBPOLY_BUILD_PYTHON_API "Build the Python API" ON)
10+
option(LIBPOLY_BUILD_PYTHON_API "Build the Python API" ON)
1111
option(LIBPOLY_BUILD_STATIC_PIC "Build the static PIC library" ON)
1212
option(LIBPOLY_BUILD_STATIC "Build the static libraru" ON)
1313

1414
set(LIBPOLY_VERSION_MAJOR 0)
1515
set(LIBPOLY_VERSION_MINOR 1)
16-
set(LIBPOLY_VERSION_PATCH 4)
17-
set(LIBPOLY_VERSION ${LIBPOLY_VERSION_MAJOR}.${LIBPOLY_VERSION_MINOR}.${LIBPOLY_VERSION_PATCH})
16+
set(LIBPOLY_VERSION_PATCH 5)
17+
set(LIBPOLY_VERSION ${LIBPOLY_VERSION_MAJOR}.${LIBPOLY_VERSION_MINOR}.${LIBPOLY_VERSION_PATCH})
1818

1919
if(APPLE)
2020
# This is the simplest setting that seems to currently work on the mac.
21-
#
21+
#
2222
set(CMAKE_MACOSX_RPATH OFF)
2323
set(CMAKE_INSTALL_NAME_DIR "${CMAKE_INSTALL_PREFIX}/lib")
2424
endif()
@@ -39,7 +39,7 @@ endif()
3939

4040

4141
#
42-
# Check for open_memstream
42+
# Check for open_memstream
4343
#
4444
include(CheckFunctionExists)
4545

@@ -57,7 +57,7 @@ add_subdirectory(include)
5757

5858
if(LIBPOLY_BUILD_PYTHON_API)
5959

60-
# Configure the python bindings
60+
# Configure the python bindings
6161
add_subdirectory(python)
6262

6363
# Configure the tests

debian/changelog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
libpoly0 (1.4-1) unstable; urgency=medium
1+
libpoly0 (1.5-1) unstable; urgency=medium
22

33
* Initial release. (Closes: #864834)
44

debian/libpoly0.symbols

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,7 @@ libpoly.so.0 libpoly0 #MINVER#
260260
lp_algebraic_number_sub_interval_op@Base 1.3
261261
lp_algebraic_number_swap@Base 1.3
262262
lp_algebraic_number_to_double@Base 1.3
263+
lp_algebraic_number_to_rational@Base 1.5
263264
lp_algebraic_number_to_string@Base 1.3
264265
lp_assignment_construct@Base 1.3
265266
lp_assignment_delete@Base 1.3

0 commit comments

Comments
 (0)