Skip to content

Commit

Permalink
Update version numbers.
Browse files Browse the repository at this point in the history
  • Loading branch information
floitsch committed Sep 15, 2018
1 parent fd043b2 commit b598d7b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ project(double-conversion)
include(GNUInstallDirs)

# pick a version #
set(double-conversion_VERSION 2.0.1)
set(double-conversion_SOVERSION_MAJOR 1)
set(double-conversion_VERSION 3.0.3)
set(double-conversion_SOVERSION_MAJOR 2)
set(double-conversion_SOVERSION_MINOR 0)
set(double-conversion_SOVERSION_PATCH 0)
set(double-conversion_SOVERSION_PATCH 1)
set(double-conversion_SOVERSION
${double-conversion_SOVERSION_MAJOR}.${double-conversion_SOVERSION_MINOR}.${double-conversion_SOVERSION_PATCH})

Expand Down
4 changes: 4 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2018-09-15:
Update version numbers. This also increases the shared-library version
number.

2018-09-09:
Fix bug where large hex literals would lose their minus sign.

Expand Down
2 changes: 1 addition & 1 deletion SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ optimize = ARGUMENTS.get('optimize', 0)
env.Replace(CXX = ARGUMENTS.get('CXX', 'g++'))

# for shared lib, requires scons 2.3.0
env['SHLIBVERSION'] = '1.0.0'
env['SHLIBVERSION'] = '2.0.1'

CCFLAGS = []
if int(debug):
Expand Down

0 comments on commit b598d7b

Please sign in to comment.