Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.11.0 #411

Merged
merged 3 commits into from
Jul 15, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 2 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ TL;DR:
* Version 1.0 of KafkaEx will be based on Kayrock and have a cleaner API - you
can start testing this API by using modules from the `KafkaEx.New` namespace.
See below for details.
* Version 0.11.0+ of KafkaEx is required to use Kayrock.

To support some oft-requested features (offset storage in Kafka, message
timestamps), we have integrated KafkaEx with
Expand Down Expand Up @@ -105,7 +106,7 @@ defmodule MyApp.Mixfile do
defp deps do
[
# add to your existing deps
{:kafka_ex, "~> 0.10"},
{:kafka_ex, "~> 0.11"},
# if using snappy compression
{:snappy, git: "https://github.com/fdmanana/snappy-erlang-nif"}
]
Expand All @@ -115,28 +116,6 @@ end

Then run `mix deps.get` to fetch dependencies.

### Adding the kafka_ex application

When using elixir < 1.4, you will need to add kafka_ex to the applications list of your mix.exs file.

```elixir
# mix.exs
defmodule MyApp.Mixfile do
# ...

def application do
[
mod: {MyApp, []},
applications: [
# add to existing apps - :logger, etc..
:kafka_ex,
:snappy # if using snappy compression
]
]
end
end
```

## Configuration

See [config/config.exs](https://github.com/kafkaex/kafka_ex/blob/master/config/config.exs)
Expand Down Expand Up @@ -458,8 +437,6 @@ mix test --include integration --include server_0_p_8_p_0

### Static analysis

This requires Elixir 1.5+.

```
mix dialyzer
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule KafkaEx.Mixfile do
def project do
[
app: :kafka_ex,
version: "0.10.0",
version: "0.11.0",
elixir: "~> 1.5",
dialyzer: [
plt_add_deps: :transitive,
Expand Down