Skip to content

Commit

Permalink
Upgrade version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
floitsch committed Sep 15, 2018
1 parent 4d5c9f7 commit eb3e59b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ cmake_minimum_required(VERSION 2.8)
project(double-conversion)

# pick a version #
set(double-conversion_VERSION 2.0.1)
set(double-conversion_VERSION 2.0.4)
set(double-conversion_SOVERSION_MAJOR 1)
set(double-conversion_SOVERSION_MINOR 0)
set(double-conversion_SOVERSION_MINOR 1)
set(double-conversion_SOVERSION_PATCH 0)
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:
Increase version numbers. This also changes 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'] = '1.1.0'

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

0 comments on commit eb3e59b

Please sign in to comment.