diff --git a/CHANGELOG.md b/CHANGELOG.md index 15162b0..a23f834 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.0] - 2021-07-09 + ## Added - `Mxpanel.Operation` struct. This struct holds all the information necessary @@ -85,7 +87,8 @@ in the `Mxpanel.track/4` function. - `Mxpanel.track_many/2`. - `Mxpanel.track_later/2`. -[Unreleased]: https://github.com/thiamsantos/mxpanel/compare/v0.4.0...HEAD +[Unreleased]: https://github.com/thiamsantos/mxpanel/compare/v1.0.0...HEAD +[1.0.0]: https://github.com/thiamsantos/mxpanel/releases/tag/v1.0.0 [0.4.0]: https://github.com/thiamsantos/mxpanel/releases/tag/v0.4.0 [0.3.0]: https://github.com/thiamsantos/mxpanel/releases/tag/v0.3.0 [0.2.0]: https://github.com/thiamsantos/mxpanel/releases/tag/v0.2.0 diff --git a/README.md b/README.md index 487d86e..1560439 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ The package can be installed by adding `mxpanel` to your list of dependencies in ```elixir def deps do [ - {:mxpanel, "~> 0.4.0"}, + {:mxpanel, "~> 1.0.0"}, {:jason, "~> 1.2"}, {:hackney, "~> 1.17"} ] diff --git a/mix.exs b/mix.exs index 265a122..8806d36 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule Mxpanel.MixProject do use Mix.Project @name "Mxpanel" - @version "0.4.0" + @version "1.0.0" @description "Client for Mixpanel Ingestion API" @repo_url "https://github.com/thiamsantos/mxpanel"