Skip to content

Commit

Permalink
Bump version to 2.2.0 (#276)
Browse files Browse the repository at this point in the history
Bump version to 2.2.0. Notable changes include,

- Support for lists in sequences (PR #227)
- Using `Macro.underscore/1` so that factory names don't break in elixir
1.6 (PR #275)
  • Loading branch information
germsvel authored Mar 13, 2018
1 parent 037d826 commit 466ad05
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ complete changelog, see the git history for each version via the version links.

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

## [2.2.0]

### Added

- Adds support for using lists in sequences ([#227]).

### Fixed

- Elixir 1.6.x changed the behavior of `Regex.split/3` which caused factory
names to break. Added a fix in ([#275]).

[2.2.0]: https://github.com/thoughtbot/ex_machina/compare/v2.1.0...v2.2.0
[#227]: https://github.com/thoughtbot/ex_machina/pull/227
[#275]: https://github.com/thoughtbot/ex_machina/pull/275

## [2.1.0]

### Added
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ In `mix.exs`, add the ExMachina dependency:
def deps do
# Get the latest from hex.pm. Works with Ecto 2.0
[
{:ex_machina, "~> 2.1"},
{:ex_machina, "~> 2.2"},
]
end
```
Expand All @@ -43,7 +43,7 @@ In `mix.exs`, add the ExMachina dependency:
```elixir
def deps do
[
{:ex_machina, "~> 2.1", only: :test},
{:ex_machina, "~> 2.2", only: :test},
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule ExMachina.Mixfile do
use Mix.Project

@project_url "https://github.com/thoughtbot/ex_machina"
@version "2.1.0"
@version "2.2.0"

def project() do
[
Expand Down

0 comments on commit 466ad05

Please sign in to comment.