diff --git a/CHANGELOG.md b/CHANGELOG.md index 83913bd..ac0b94e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## v1.0.4 - 2021-03-15 + +* Fix type errors, thanks! @djthread: + * ([#96](https://github.com/duffelhq/paginator/pull/96)) + * ([#98](https://github.com/duffelhq/paginator/pull/98)) +* Fix tuples typo in documentation: ([#99](https://github.com/duffelhq/paginator/pull/99), thanks! @iamsekun) +* Use GitHub Actions for continuous integration: ([#100](https://github.com/duffelhq/paginator/pull/100), thanks! @dolfinus) +* Update package dependencies + * `calendar` -> 1.0.0 + * `ecto` -> 3.0.9 + * `ex_machina` -> 2.7.0 + * `plug_crypto` -> 1.2.1 + * `postgrex` -> 0.14.3 + ## v1.0.3 - 2020-12-18 * Fix cursor field validation bug ([#93](https://github.com/duffelhq/paginator/pull/93)) diff --git a/README.md b/README.md index 686b392..34ac52e 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ Add `paginator` to your list of dependencies in `mix.exs`: ```elixir def deps do - [{:paginator, "~> 1.0.3"}] + [{:paginator, "~> 1.0.4"}] end ``` diff --git a/mix.exs b/mix.exs index 8d9b3d4..064f673 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Paginator.Mixfile do use Mix.Project - @version "1.0.3" + @version "1.0.4" def project do [