diff --git a/CHANGELOG.md b/CHANGELOG.md index 1dbcc80..53e2c10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,6 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) -## [v0.2.0] - ## [v0.1.0] ### Uncategorised - 👷 Adds Coverall tests @@ -33,6 +31,7 @@ resolved authenticate/2 returning a malformed :error struct - ✅ Test for potential opportunistic MITM attacks - ✨ Add respond with 401 - ➕ add :git_cli +- :rocket: Bump version to 0.2.0 ## [v0.0.0] ### Uncategorised diff --git a/README.md b/README.md index cd70fdf..a869d3f 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ The package can be installed by adding `plug_shopify_jwt` to your list of depend ```elixir def deps do [ - {:plug_shopify_jwt, "~> 0.2.0"} + {:plug_shopify_jwt, "~> 0.1.0"} ] end ``` \ No newline at end of file diff --git a/mix.exs b/mix.exs index 05d26ef..b99934f 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule PlugShopifyJWT.MixProject do def project do [ app: :plug_shopify_jwt, - version: "0.2.0", + version: "0.1.0", elixir: "~> 1.10", test_coverage: [tool: ExCoveralls], start_permanent: Mix.env() == :prod,