diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c3f1463..96f1cd9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.2.0" + ".": "1.3.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 87c50b2..18c678b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ 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/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.3.0](https://github.com/stordco/paginator/compare/v1.2.0...v1.3.0) (2023-10-11) + + +### Features + +* Add support for all asc/desc sorting order combinations ([#136](https://github.com/stordco/paginator/issues/136)) ([9e5b1d2](https://github.com/stordco/paginator/commit/9e5b1d21b71797966ec2be5e6eea8d628bb24dd2)) + + +### Miscellaneous + +* Setup common-config-elixir ([#1](https://github.com/stordco/paginator/issues/1)) ([af8424d](https://github.com/stordco/paginator/commit/af8424dc9fb7d227b0d13b2bbc1c5380dcb7f6ac)) + ## v1.2.0 - 2022-10-27 * Make config raise specific domain specific error ([#176](https://github.com/duffelhq/paginator/pull/176)) * Update package dependencies diff --git a/README.md b/README.md index 89ae62f..97d0ca1 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ Add `:paginator` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:paginator, "~> 1.2.0", organization: "stord"} + {:paginator, "~> 1.3.0", organization: "stord"} ] end ``` diff --git a/mix.exs b/mix.exs index 17e826c..d134bf4 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule Paginator.Mixfile do use Mix.Project @source_url "https://github.com/stordco/paginator" - @version "1.2.0" + @version "1.3.0" def project do [