Skip to content

Commit

Permalink
Prepare v3.2.0 release. (#196)
Browse files Browse the repository at this point in the history
  • Loading branch information
floitsch authored May 18, 2023
1 parent 4d841bf commit 4f7a25d
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.0)
project(double-conversion VERSION 3.2.0)
project(double-conversion VERSION 3.3.0)

option(BUILD_SHARED_LIBS "Build shared libraries (.dll/.so) instead of static ones (.lib/.a)" OFF)

Expand Down
19 changes: 19 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
2023-05-18:
Add flags to control trailing decimal and zero in exponent
form when input has one significant digit.

Update changelog and version number.

2022-09-01:
Fix some compile warnings in Visual Studio.

2022-07-07:
Fixed all -Wzero-as-null-pointer-constant warnings.

2022-06-25:
Add a cast to silence a signedness conversion warning.

2022-01-30:
Fix warnings on Windows.
Give shared-lib option.

2022-01-16:
Install Visual Studio debugger (pdb) files.

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'] = '3.0.0'
env['SHLIBVERSION'] = '3.2.0'

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

0 comments on commit 4f7a25d

Please sign in to comment.