Skip to content

Commit 52b42e2

Browse files
author
Michael Fero
committed
Update CHANGELOG and versions
1 parent 9ef1b03 commit 52b42e2

13 files changed

Lines changed: 61 additions & 16 deletions

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
1.9.0
2+
===========
3+
4+
Features
5+
--------
6+
[CPP-745] Exponential reconnection policy with jitter
7+
[CPP-769] Use `clang-format` to fix up formatting
8+
[CPP-775] Add `clang-format` to Windows
9+
10+
Other
11+
--------
12+
[CPP-743] Move internal components from `namespace cass` to `namespace datastax::internal`
13+
[CPP-764] Rename namespace from `cass` to `datastax`
14+
[CPP-766] Allow RPM packaging script to build RPM packages for Amazon Linux
15+
[CPP-770] Fix header files include guard (__CASS_XXX to DATASTAX_XXX)
16+
[CPP-772] Remove per cpp file LOG_FILE attribute to speed up Windows builds
17+
118
1.8.0
219
===========
320

appveyor.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ environment:
4141
APPVEYOR_IGNORE_COMMIT_FILTERING_ON_TAG: true
4242
DRIVER_TYPE: DSE
4343
BOOST_VERSION: 1.69.0
44-
LIBSSH2_VERSION: 1.8.2
45-
LIBUV_VERSION: 1.28.0
46-
OPENSSL_1_0_VERSION: 1.0.2r
47-
OPENSSL_1_1_VERSION: 1.1.1b
44+
LIBSSH2_VERSION: 1.9.0
45+
LIBUV_VERSION: 1.29.1
46+
OPENSSL_1_0_VERSION: 1.0.2s
47+
OPENSSL_1_1_VERSION: 1.1.1c
4848
matrix:
4949
- CMAKE_GENERATOR: Visual Studio 10 2010
5050
OPENSSL_MAJOR_MINOR: 1.0

build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ os:
1919
- centos/7-64/cpp
2020
- osx/high-sierra
2121
env:
22-
LIBUV_VERSION: 1.28.0
22+
LIBUV_VERSION: 1.29.1
2323
build:
2424
- script: |
2525
. ./cpp-driver/.build.sh

cpp-driver/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
2.13.0
2+
===========
3+
4+
Features
5+
--------
6+
[CPP-745] Exponential reconnection policy with jitter
7+
[CPP-769] Use `clang-format` to fix up formatting
8+
[CPP-775] Add `clang-format` to Windows
9+
10+
Other
11+
--------
12+
[CPP-743] Move internal components from `namespace cass` to `namespace datastax::internal`
13+
[CPP-764] Rename namespace from `cass` to `datastax`
14+
[CPP-766] Allow RPM packaging script to build RPM packages for Amazon Linux
15+
[CPP-770] Fix header files include guard (__CASS_XXX to DATASTAX_XXX)
16+
[CPP-772] Remove per cpp file LOG_FILE attribute to speed up Windows builds
17+
18+
Community
19+
--------
20+
Fixed the location of the '[in]' information for Doxygen. (AlexisWilke)
21+
Added header subdirectory installation capability. (accelerated)
22+
Changed pkg_config templates to use the library variable name. (accelerated)
23+
Fix generation of shlib deps file for debian packages. (jirkasilhan)
24+
125
2.12.0
226
===========
327

cpp-driver/appveyor.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ environment:
4040
APPVEYOR_IGNORE_COMMIT_FILTERING_ON_TAG: true
4141
DRIVER_TYPE: CASS
4242
BOOST_VERSION: 1.69.0
43-
LIBSSH2_VERSION: 1.8.2
44-
LIBUV_VERSION: 1.28.0
45-
OPENSSL_1_0_VERSION: 1.0.2r
46-
OPENSSL_1_1_VERSION: 1.1.1b
43+
LIBSSH2_VERSION: 1.9.0
44+
LIBUV_VERSION: 1.29.1
45+
OPENSSL_1_0_VERSION: 1.0.2s
46+
OPENSSL_1_1_VERSION: 1.1.1c
4747
matrix:
4848
- CMAKE_GENERATOR: Visual Studio 10 2010
4949
OPENSSL_MAJOR_MINOR: 1.0

cpp-driver/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ os:
1919
- centos/7-64/cpp
2020
- osx/high-sierra
2121
env:
22-
LIBUV_VERSION: 1.28.0
22+
LIBUV_VERSION: 1.29.1
2323
build:
2424
- script: |
2525
. .build.sh

cpp-driver/cmake/modules/ExternalProject-OpenSSL.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ endif()
2121
# OpenSSL related CMake options
2222
option(OPENSSL_VERSION "OpenSSL version to build and install")
2323
if(NOT OPENSSL_VERSION)
24-
# TODO: Should we default to OpenSSL 1.1 (e.g. 1.1.1b)?
25-
set(OPENSSL_VERSION "1.0.2r")
24+
# TODO: Should we default to OpenSSL 1.1 (e.g. 1.1.1c)?
25+
set(OPENSSL_VERSION "1.0.2s")
2626
endif()
2727
option(OPENSSL_INSTALL_PREFIX "OpenSSL installation prefix location")
2828
if(CASS_USE_ZLIB)

cpp-driver/cmake/modules/ExternalProject-libssh2.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if(NOT LIBSSH2_INSTALL_PREFIX)
2222
endif()
2323
option(LIBSSH2_VERSION "libssh2 version to build and install")
2424
if(NOT LIBSSH2_VERSION)
25-
set(LIBSSH2_VERSION "1.8.2")
25+
set(LIBSSH2_VERSION "1.9.0")
2626
endif()
2727
set(LIBSSH2_VERSION ${LIBSSH2_VERSION} CACHE STRING "libssh2 version to build and install" FORCE)
2828

cpp-driver/cmake/modules/ExternalProject-libuv.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if(NOT LIBUV_INSTALL_PREFIX)
2222
endif()
2323
option(LIBUV_VERSION "libuv version to build and install")
2424
if(NOT LIBUV_VERSION)
25-
set(LIBUV_VERSION "1.28.0")
25+
set(LIBUV_VERSION "1.29.1")
2626
endif()
2727
set(LIBUV_VERSION ${LIBUV_VERSION} CACHE STRING "libuv version to build and install" FORCE)
2828

cpp-driver/docs.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ rules:
5757
use_path_nav_files_only: true
5858

5959
versions:
60+
- name: "2.13"
61+
ref: 2.13.0
6062
- name: "2.12"
6163
ref: 2.12.0
6264
- name: "2.11"

0 commit comments

Comments
 (0)