diff --git a/CHANGELOG.md b/CHANGELOG.md index ab1d9f5ed..d58091cd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,27 @@ +2.16.0 +=========== + +Features +-------- +* [PR #489] Add API to get/set coordinator node + +Bug Fixes +-------- +* [CPP-924] Pure virtual function called when Session object is being destructed +* [PR #488] Only using a single resolved IP when connecting with hostname +* [PR #494] Use correct `Host:` header when calling metadata service (Astra) + +Other +--------- +* [CPP-933] Reduce the log severity of protocol negotiation errors/warnings + +2.15.3 +=========== + +Bug Fixes +-------- +* [CPP-922] Limit to TLS 1.2 + 2.15.2 =========== diff --git a/docs.yaml b/docs.yaml index 227b9b679..6aecee33e 100644 --- a/docs.yaml +++ b/docs.yaml @@ -68,8 +68,10 @@ rules: use_path_nav_files_only: true versions: + - name: "2.16" + ref: 70812a0b5d21fb3e7f6c6e98a76f0a688d0c8a69 - name: "2.15" - ref: 40e8268b7750dacafe6662563d9873269d26f6c7 + ref: 2.15.3 - name: "2.14" ref: 2.14.0 - name: "2.13" diff --git a/include/cassandra.h b/include/cassandra.h index 63341bb3c..d0262463a 100644 --- a/include/cassandra.h +++ b/include/cassandra.h @@ -52,8 +52,8 @@ */ #define CASS_VERSION_MAJOR 2 -#define CASS_VERSION_MINOR 15 -#define CASS_VERSION_PATCH 3 +#define CASS_VERSION_MINOR 16 +#define CASS_VERSION_PATCH 0 #define CASS_VERSION_SUFFIX "" #ifdef __cplusplus