diff --git a/CHANGELOG.md b/CHANGELOG.md index b94f44c..4db87cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. -## [unreleased] +## [0.2.0] - 2023-12-04 ### Bug Fixes @@ -31,6 +31,7 @@ All notable changes to this project will be documented in this file. - Chore: update ci.yml - Chore: Clean up (#60) - Chore: Integration tests (#61) +- Chore: update hashing method for steps (#75) ## [0.1.9] - 2023-08-01 diff --git a/README.md b/README.md index 623e063..94b792c 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,3 @@ -## Notice - -This is the README for `main` branch, which is for pre `0.2.0` release. -
@@ -41,7 +37,7 @@ to your list of dependencies in `mix.exs` # mix.exs def deps do [ - {:inngest, git: "https://github.com/inngest/ex_inngest.git", branch: "main"} + {:inngest, "~> 0.2"} ] end ``` diff --git a/VERSION b/VERSION index 1a03094..0ea3a94 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.9 +0.2.0 diff --git a/mix.exs b/mix.exs index e9e2a57..1cfab47 100644 --- a/mix.exs +++ b/mix.exs @@ -95,8 +95,6 @@ defmodule Inngest.MixProject do [ {:tesla, "~> 1.4"}, {:jason, "~> 1.4"}, - # JSON Canonicalization Scheme (JCS) - # {:jcs, git: "https://github.com/pzingg/jcs.git", ref: "24196d27ae7a9d1ab116e004d0aac07360ae4000"}, {:plug, "~> 1.14"}, {:timex, "~> 3.7"}, {:slugify, "~> 1.3"},