diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f5c85c21..6f624a26f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +##0.4.0 +### Fixed +- Prevent stream buffer overflow by lowering the rate of incoming partitions +[53](https://github.com/faust-streaming/faust/issues/53) +-Recovery thread updating standby partition writes in single writes instead of using writeBatch +[51](https://github.com/faust-streaming/faust/issues/51) +- IllegalStateException on seek to offset of a partition that was removed by a rebalance +[54](https://github.com/faust-streaming/faust/issues/54) + + ## 0.3.1 ### Fixed -Updating opentracing dependency[50](https://github.com/faust-streaming/faust/issues/50) diff --git a/faust/__init__.py b/faust/__init__.py index ef7125541..52d9c65b7 100644 --- a/faust/__init__.py +++ b/faust/__init__.py @@ -23,7 +23,7 @@ import typing from typing import Any, Mapping, NamedTuple, Optional, Sequence, Tuple -__version__ = "0.3.1" +__version__ = "0.4.0" __author__ = "Robinhood Markets, Inc." __contact__ = "schrohm@gmail.com, vpatki@wayfair.com" __homepage__ = "https://github.com/faust-streaming/faust"