Skip to content

Commit e36c3b1

Browse files
authored
Merge pull request #394 from woylie/ecto-3.10.3
update ecto version requirement, bump version
2 parents 5b40ca8 + 640e43f commit e36c3b1

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
## Unreleased
44

5+
## [0.22.1] - 2023-07-18
6+
7+
### Fixed
8+
9+
- Updated version requirement for Ecto to `~> 3.10.3`. Flop 0.22.0 relies
10+
on a feature added in that version and doesn't compile with lower versions.
11+
512
## [0.22.0] - 2023-07-17
613

714
This release includes a substantial refactoring to lay the groundwork for the

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ file:
3939
```elixir
4040
def deps do
4141
[
42-
{:flop, "~> 0.22.0"}
42+
{:flop, "~> 0.22.1"}
4343
]
4444
end
4545
```

mix.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ defmodule Flop.MixProject do
22
use Mix.Project
33

44
@source_url "https://github.com/woylie/flop"
5-
@version "0.22.0"
5+
@version "0.22.1"
66

77
def project do
88
[
@@ -57,7 +57,7 @@ defmodule Flop.MixProject do
5757
[
5858
{:credo, "~> 1.7.0", only: [:dev, :test], runtime: false},
5959
{:dialyxir, "~> 1.3.0", only: [:dev, :test], runtime: false},
60-
{:ecto, "~> 3.9"},
60+
{:ecto, "~> 3.10.3"},
6161
{:ecto_sql, "~> 3.9", only: :test},
6262
{:ex_doc, "~> 0.21", only: :dev, runtime: false},
6363
{:ex_machina, "~> 2.4", only: :test},

0 commit comments

Comments
 (0)