Skip to content

Commit

Permalink
Release version 0.6.0
Browse files Browse the repository at this point in the history
This release refactors the internal data structures of Rafka. The
external API and generally any interaction with existing functionality
is not affected. In short, it implements the `Redefine Rafka scope`[0]
and `Drop redundant functionality`[1] proposals of the `Rafka
Rethinking`[2] design doc.

[0]: https://github.com/skroutz/rafka/blob/master/docs/designs/design-rafka-rethinking.rst#redefine-rafka-scope)
[1]: https://github.com/skroutz/rafka/blob/master/docs/designs/design-rafka-rethinking.rst#drop-redundant-functionality
[2]: https://github.com/skroutz/rafka/blob/master/docs/designs/design-rafka-rethinking.rst)
  • Loading branch information
dblia committed Oct 8, 2019
1 parent 8b1e07e commit ed29111
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,23 @@ Breaking changes are prefixed with a "[BREAKING]" label.
## master (unreleased)


## 0.6.0 (2019-10-08)

This is a release refactoring the internal data structures of Rafka as detailed in [Rafka
Rethinking](https://github.com/skroutz/rafka/blob/master/docs/designs/design-rafka-rethinking.rst)
design doc.

### Changed

- [BREAKING] Drop support for multiple Consumers per Client. From now on, only a [single Consumer can be
associated with a Client instance](https://github.com/skroutz/rafka/blob/master/docs/designs/design-rafka-rethinking.rst#redefine-rafka-scope)

- [INTERNAL] The ConsumerManager module as well as the respective functionality for managing
Consumers has been [completely dropped from the
source](https://github.com/skroutz/rafka/blob/master/docs/designs/design-rafka-rethinking.rst#drop-redundant-functionality).
Now, the handling of Consumers is split between the Server and the respective Client instances.


## 0.5.0 (2019-08-29)

### Added
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (
"github.com/urfave/cli"
)

const Version = "0.5.0"
const Version = "0.6.0"

var (
cfg Config
Expand Down

0 comments on commit ed29111

Please sign in to comment.