Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
PJUllrich committed Nov 12, 2023
1 parent eecca3d commit cd9ecbd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## v0.2.0

* *BREAKING* Move `filter` parameters for all `list`-calls to a `filter: [...]`-option.
* If you previously filtered record with e.g. `Customers.list(name: "test@test.com")` you now have to wrap the filters with a `filter`-option like `Customers.list(filter: [name: "test@test.com"])`
* Add `page` parameter to `list`-calls.
* For example, `Customers.list(page: [size: 2, number: 5])` will return page 5 with page_size 2. You can combine it filters and other parameters like so: `Customers.list(filter: [name: "Peter Ullrich"], page: [size: 2, number: 5], sort: "-name")`

## v0.1.7

* Add `customer_portal` to `Customer.urls`
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule LemonEx.MixProject do
use Mix.Project

@version "0.1.7"
@version "0.2.0"
@source_url "https://github.com/PJUllrich/lemon_ex"

def project do
Expand Down

0 comments on commit cd9ecbd

Please sign in to comment.