From 1c0bea98d1fcb426ea10b635fad28e2373632794 Mon Sep 17 00:00:00 2001 From: stord-engineering-account <77021775+stord-engineering-account@users.noreply.github.com> Date: Tue, 6 Sep 2022 18:35:57 -0600 Subject: [PATCH] chore(main): release 1.0.0 (#4) --- .release-please-manifest.json | 2 +- CHANGELOG.md | 18 ++++++++++++++++++ mix.exs | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 466df71..37fcefa 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0" + ".": "1.0.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index d6204c3..0730d1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## 1.0.0 (2022-09-07) + + +### ⚠ BREAKING CHANGES + +* rename module to Kafee (#5) + +### Features + +* add synchronous producer module ([#4](https://github.com/stordco/kafee/issues/4)) ([d73e89d](https://github.com/stordco/kafee/commit/d73e89d950b0091bcffbfed1c2255c225f564ac4)) +* publish package to stord hex.pm org ([#3](https://github.com/stordco/kafee/issues/3)) ([e4b48d0](https://github.com/stordco/kafee/commit/e4b48d04f39e64a97e350d80cb09e6dd6ab93637)) +* rename module to Kafee ([#5](https://github.com/stordco/kafee/issues/5)) ([7f88456](https://github.com/stordco/kafee/commit/7f88456c85b0cc80661a0b25607644d2fd94de67)) + + +### Bug Fixes + +* update brod client name to avoid process collision ([#1](https://github.com/stordco/kafee/issues/1)) ([905c897](https://github.com/stordco/kafee/commit/905c897e4904416f1128b790ef9b372fdc3a14d8)) + ## v0.1.0 (2022-09-6) diff --git a/mix.exs b/mix.exs index 74d2be6..b49c23c 100644 --- a/mix.exs +++ b/mix.exs @@ -6,7 +6,7 @@ defmodule Kafee.MixProject do app: :kafee, name: "Kafee", description: "Let's get energized with Kafka!", - version: "0.1.0", + version: "1.0.0", elixir: "~> 1.11", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,