Skip to content

Commit

Permalink
prep for 0.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidTompkins committed Oct 15, 2013
1 parent 3a091cb commit e6d5a45
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 12 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
libkafka 0.4.0 ()
libkafka 0.4.0 (10.15.2013)
==============
* Added gcov/lcov unit test coverage reporting.
* Added coveralls.io support for unit test coverage reporting.
* Added coveralls.io support for automated unit test coverage reporting in conjunction with travis CI.
* Added public kafka test server in EC2 for client unit test support.
* Fix for Issue #1: Kafka server returns -1 key length in FetchResponse, not handled by Packet::readBytes()
* Added additional unit tests for areas identified by unit test coverage reporting

libkafka 0.3.0 (9.30.2013)
==============
Expand Down
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ lib_libkafka_la_SOURCES = \
lib/src/offset/OffsetResponse.cc \
lib/src/offset/OffsetResponsePartition.cc

LIBKAFKA_LIBRARY_VERSION = 0:3:0
LIBKAFKA_LIBRARY_VERSION = 0:4:0
lib_libkafka_la_CPPFLAGS = $(AM_CPPFLAGS) $(COVERAGE_CFLAGS)
lib_libkafka_la_LDFLAGS = -version-info $(LIBKAFKA_LIBRARY_VERSION) $(COVERAGE_LDFLAGS)

Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,16 @@ Not compatible with Kafka versions prior to 0.8 due to wire protocol changes.

Version
=======
Current release version: 0.3.0 (see <a href="https://github.com/adobe-research/libkafka/releases">RELEASES</a>)
Current release version: 0.4.0 (see <a href="https://github.com/adobe-research/libkafka/releases">RELEASES</a>)

Dependencies
============

* zlib for CRC calculation, GZIP compression
* Snappy for Snappy compression
* Google Test for unit tests
* (optional) Doxygen for C/C++ API documentation
* (optional) lcov/gcov for unit test coverage reporting
* (optional) doxygen for C/C++ API documentation

Installation
============
Expand Down
2 changes: 1 addition & 1 deletion app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<parent>
<groupId>org.dt.libkafka</groupId>
<artifactId>libkafka-all</artifactId>
<version>0.3.0</version>
<version>0.4.0</version>
</parent>
<artifactId>libkafka-app</artifactId>
<packaging>a</packaging>
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# "[1.0.1]"). It also asumes that there won't be any closing parenthesis
# between "AC_INIT(" and the closing ")" including comments and strings.
AC_INIT([C++ Client for Apache Kafka v0.8+],
[0.3.0],
[0.4.0],
[[email protected]],
[libkafka])

Expand Down
2 changes: 1 addition & 1 deletion install/rpm/libkafka.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
###
%define RPM_DIR rpm
%define _noarch_libdir /usr/lib
%define rel_ver 0.3.0
%define rel_ver 0.4.0
%define _topdir %(echo $PWD)/%{RPM_DIR}
%define _tmppath %(echo $PWD)/%{RPM_DIR}

Expand Down
2 changes: 1 addition & 1 deletion lib/libkafka.doxygen
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ PROJECT_NAME = "libkafka"
# This could be handy for archiving the generated documentation or
# if some version control system is used.

PROJECT_NUMBER = "0.3.0"
PROJECT_NUMBER = "0.4.0"

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer
Expand Down
2 changes: 1 addition & 1 deletion lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<parent>
<groupId>org.dt.libkafka</groupId>
<artifactId>libkafka-all</artifactId>
<version>0.3.0</version>
<version>0.4.0</version>
</parent>
<artifactId>libkafka</artifactId>
<packaging>so</packaging>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.dt.libkafka</groupId>
<artifactId>libkafka-all</artifactId>
<version>0.3.0</version>
<version>0.4.0</version>
<packaging>pom</packaging>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<parent>
<groupId>org.dt.libkafka</groupId>
<artifactId>libkafka-all</artifactId>
<version>0.3.0</version>
<version>0.4.0</version>
</parent>
<artifactId>libkafka-test</artifactId>
<packaging>a</packaging>
Expand Down

0 comments on commit e6d5a45

Please sign in to comment.