File tree Expand file tree Collapse file tree 3 files changed +21
-2
lines changed
Expand file tree Collapse file tree 3 files changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,25 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## v1.1.0 - 2022-02-08
9+
10+ * Skip duplicated GitHub Actions runs: ([ #110 ] ( https://github.com/duffelhq/paginator/pull/110 ) , thanks! @dolfinus )
11+ * Fix typespec for ` cursor_for_record() ` : ([ #114 ] ( https://github.com/duffelhq/paginator/pull/114 ) , thanks! @kaylenmistry )
12+ * Project badges and GitHub Actions updates, thanks! @sgerrand :
13+ * ([ #116 ] ( https://github.com/duffelhq/paginator/pull/116 ) )
14+ * ([ #121 ] ( https://github.com/duffelhq/paginator/pull/121 ) )
15+ * ([ #128 ] ( https://github.com/duffelhq/paginator/pull/128 ) )
16+ * ([ #144 ] ( https://github.com/duffelhq/paginator/pull/128 ) )
17+ * Updates to project documentation: ([ #122 ] ( https://github.com/duffelhq/paginator/pull/122 ) , thanks! @ikianmeng )
18+ * Fix example for joined fields: ([ #123 ] ( https://github.com/duffelhq/paginator/pull/123 ) , thanks! @nickdichev )
19+ * Add support for sorting order combinations: ([ #136 ] ( https://github.com/duffelhq/paginator/pull/136 ) , thanks! @dgvncz0f )
20+ * Update package dependencies
21+ * ` ex_doc ` -> 0.28.0
22+ * ` ecto ` -> 3.6.2
23+ * ` ecto_sql ` -> 3.6.2
24+ * ` plug_crypto ` -> 1.2.2
25+ * ` postgrex ` -> 0.15.13
26+
827## v1.0.4 - 2021-03-15
928
1029* Fix type errors, thanks! @djthread :
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ Add `:paginator` to your list of dependencies in `mix.exs`:
6969``` elixir
7070def deps do
7171 [
72- {:paginator , " ~> 1.0.4 " }
72+ {:paginator , " ~> 1.1.0 " }
7373 ]
7474end
7575```
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ defmodule Paginator.Mixfile do
22 use Mix.Project
33
44 @ source_url "https://github.com/duffelhq/paginator"
5- @ version "1.0.4 "
5+ @ version "1.1.0 "
66
77 def project do
88 [
You can’t perform that action at this time.
0 commit comments