From 616e066bbe961288937178971166f8a163116614 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:51:04 -0600 Subject: [PATCH] chore(main): release 1.0.2 (#6) --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ README.md | 2 +- mix.exs | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8d7e5f1..b870c5e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.0.1" + ".": "1.0.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index ded553a..bfb9a61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.0.2](https://github.com/stordco/kafee/compare/v1.0.1...v1.0.2) (2022-09-07) + + +### Bug Fixes + +* add org to mix.exs package block ([117fa28](https://github.com/stordco/kafee/commit/117fa28f715dec0d548d15950d299dcda47fa1e5)) + ## [1.0.1](https://github.com/stordco/kafee/compare/v1.0.0...v1.0.1) (2022-09-07) diff --git a/README.md b/README.md index 839a118..fa5d4cf 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Just add [`kafee`](https://hex.pm/stordco/kafee) to your `mix.exs` file like so: ```elixir def deps do [ - {:kafee, "~> 1.0.1", organization: "stord"} + {:kafee, "~> 1.0.2", organization: "stord"} ] end ``` diff --git a/mix.exs b/mix.exs index c21d908..085cf5b 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: "1.0.1", + version: "1.0.2", elixir: "~> 1.11", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,