Skip to content

Commit

Permalink
Bump kafka_protocol to 2.2.5 (#306)
Browse files Browse the repository at this point in the history
  • Loading branch information
jesperes authored and zmstone committed Feb 6, 2019
1 parent af896a5 commit f1f35a7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Makefile
@@ -1,14 +1,14 @@
KAFKA_VERSION ?= 1.1
PROJECT = brod
PROJECT_DESCRIPTION = Kafka client library in Erlang
PROJECT_VERSION = 3.7.4
PROJECT_VERSION = 3.7.5

DEPS = supervisor3 kafka_protocol

ERLC_OPTS = -Werror +warn_unused_vars +warn_shadow_vars +warn_unused_import +warn_obsolete_guard +debug_info -Dbuild_brod_cli

dep_supervisor3_commit = 1.1.8
dep_kafka_protocol_commit = 2.2.4
dep_kafka_protocol_commit = 2.2.5
dep_kafka_protocol = git https://github.com/klarna/kafka_protocol.git $(dep_kafka_protocol_commit)

EDOC_OPTS = preprocess, {macros, [{build_brod_cli, true}]}
Expand Down
4 changes: 2 additions & 2 deletions changelog.md
Expand Up @@ -138,9 +138,9 @@
* Discard stale async-ack messages to group subscriber
* 3.7.4
* Add callback to make user_data in group join request
* 3.?
* 3.7.5
* Bump kafka protocol version to 2.2.5
* Fix empty assignment handling. In case a group member has no partition assigned,
`member_assignment` data field in group sync response can either be `null` (kafka 0.10)
or a struct having empty `topic_partitions` (kafka 0.11 or later). The later case
was not handled properly in `brod` before this fix.

2 changes: 1 addition & 1 deletion rebar.config
@@ -1,5 +1,5 @@
{deps, [ {supervisor3, "1.1.8"}
, {kafka_protocol, "2.2.4"}
, {kafka_protocol, "2.2.5"}
]}.
{edoc_opts, [{preprocess, true}, {macros, [{build_brod_cli, true}]}]}.
{erl_opts, [warn_unused_vars,warn_shadow_vars,warn_unused_import,warn_obsolete_guard,debug_info]}.
Expand Down
2 changes: 1 addition & 1 deletion src/brod.app.src
@@ -1,7 +1,7 @@
%% -*- mode:erlang -*-
{application,brod,
[{description,"Apache Kafka Erlang client library"},
{vsn,"3.7.4"},
{vsn,"3.7.5"},
{registered,[]},
{applications,[kernel,stdlib,kafka_protocol,supervisor3]},
{env,[]},
Expand Down

0 comments on commit f1f35a7

Please sign in to comment.