Skip to content
This repository was archived by the owner on Sep 28, 2023. It is now read-only.

Commit b734e05

Browse files
author
Michael Penick
committed
Updated version and CHANGELOG for 1.0.3 release
1 parent 93f6c74 commit b734e05

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
1.0.3
2+
===========
3+
September 21, 2015
4+
5+
Other
6+
--------
7+
* Fixed SSL ring buffer memory leak
8+
* Fixed hanging issue caused by `cass::MPMCQueue` memory race
9+
* Fixed invalid state assertion in `cass::Handler`
10+
111
1.0.2
212
===========
313
May 15, 2015

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ endif()
1717
project(${PROJECT_NAME_STR} C CXX)
1818
set(PROJECT_VERSION_MAJOR 1)
1919
set(PROJECT_VERSION_MINOR 0)
20-
set(PROJECT_VERSION_PATCH 2)
20+
set(PROJECT_VERSION_PATCH 3)
2121
set(PROJECT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH})
2222

2323
set(CASS_DRIVER_PROJECT_NAME ${PROJECT_NAME_STR})

include/cassandra.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252

5353
#define CASS_VERSION_MAJOR 1
5454
#define CASS_VERSION_MINOR 0
55-
#define CASS_VERSION_PATCH 2
55+
#define CASS_VERSION_PATCH 3
5656
#define CASS_VERSION_SUFFIX ""
5757

5858
#ifdef __cplusplus

packaging/build_deb.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function check_command {
1212
check_command "dch" "debhelper"
1313
check_command "lsb_release" "lsb-release"
1414

15-
version="1.0.2"
15+
version="1.0.3"
1616
release=1
1717
dist=$(lsb_release -s -c)
1818
base="cassandra-cpp-driver-$version"

packaging/build_rpm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if [[ ! -z $1 ]]; then
1717
arch=$1
1818
fi
1919

20-
version="1.0.2"
20+
version="1.0.3"
2121
base="cassandra-cpp-driver-$version"
2222
archive="$base.tar.gz"
2323
files="CMakeLists.txt cmake_uninstall.cmake.in include src README.md LICENSE.txt"

0 commit comments

Comments
 (0)