Skip to content

Commit 8356aef

Browse files
authored
Merge pull request #154 from duffelhq/prep-1.1.0
Release v1.1.0
2 parents 9e5b1d2 + cf1f79d commit 8356aef

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,25 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and 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:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Add `:paginator` to your list of dependencies in `mix.exs`:
6969
```elixir
7070
def deps do
7171
[
72-
{:paginator, "~> 1.0.4"}
72+
{:paginator, "~> 1.1.0"}
7373
]
7474
end
7575
```

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
[

0 commit comments

Comments
 (0)