Skip to content

Commit 9f92dec

Browse files
committed
Release version 2.7.0
1 parent eaa4b9b commit 9f92dec

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ complete changelog, see the git history for each version via the version links.
77

88
[hex package page]: https://hex.pm/packages/ex_machina
99

10+
## [2.7.0]
11+
12+
[2.7.0]: https://github.com/thoughtbot/ex_machina/compare/v2.6.0...v2.7.0
13+
14+
### Added
15+
16+
- Allow setting sequence starting point (#414)
17+
18+
[#414]: https://github.com/thoughtbot/ex_machina/pull/414
19+
1020
## [2.6.0]
1121

1222
[2.6.0]: https://github.com/thoughtbot/ex_machina/compare/v2.5.0...v2.6.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ In `mix.exs`, add the ExMachina dependency:
2020
def deps do
2121
# Get the latest from hex.pm. Works with Ecto 3.0
2222
[
23-
{:ex_machina, "~> 2.6.0"},
23+
{:ex_machina, "~> 2.7.0"},
2424
]
2525
end
2626
```
@@ -43,7 +43,7 @@ In `mix.exs`, add the ExMachina dependency:
4343
```elixir
4444
def deps do
4545
[
46-
{:ex_machina, "~> 2.6.0", only: :test},
46+
{:ex_machina, "~> 2.7.0", only: :test},
4747
]
4848
end
4949
```

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ defmodule ExMachina.Mixfile do
22
use Mix.Project
33

44
@project_url "https://github.com/thoughtbot/ex_machina"
5-
@version "2.6.0"
5+
@version "2.7.0"
66

77
def project() do
88
[

0 commit comments

Comments
 (0)