Skip to content

Commit 4f7a25d

Browse files
authored
Prepare v3.2.0 release. (#196)
1 parent 4d841bf commit 4f7a25d

3 files changed

Lines changed: 21 additions & 2 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.0)
2-
project(double-conversion VERSION 3.2.0)
2+
project(double-conversion VERSION 3.3.0)
33

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

Changelog

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
2023-05-18:
2+
Add flags to control trailing decimal and zero in exponent
3+
form when input has one significant digit.
4+
5+
Update changelog and version number.
6+
7+
2022-09-01:
8+
Fix some compile warnings in Visual Studio.
9+
10+
2022-07-07:
11+
Fixed all -Wzero-as-null-pointer-constant warnings.
12+
13+
2022-06-25:
14+
Add a cast to silence a signedness conversion warning.
15+
16+
2022-01-30:
17+
Fix warnings on Windows.
18+
Give shared-lib option.
19+
120
2022-01-16:
221
Install Visual Studio debugger (pdb) files.
322

SConstruct

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ optimize = ARGUMENTS.get('optimize', 0)
1616
env.Replace(CXX = ARGUMENTS.get('CXX', 'g++'))
1717

1818
# for shared lib, requires scons 2.3.0
19-
env['SHLIBVERSION'] = '3.0.0'
19+
env['SHLIBVERSION'] = '3.2.0'
2020

2121
CCFLAGS = []
2222
if int(debug):

0 commit comments

Comments
 (0)