Skip to content

Commit 6e114c0

Browse files
committed
2.1.1
1 parent cc8e124 commit 6e114c0

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,13 @@ 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+
## 2.1.1
9+
10+
- Switch from `applications:` to `extra_applications:` in mixfile.
11+
812
## 2.1.0
913

10-
* Support Ecto 3.12. The changes _require_ Ecto 3.12, so its dependency is bumped.
14+
- Support Ecto 3.12. The changes _require_ Ecto 3.12, so its dependency is bumped.
1115

1216
## 2.0.0
1317

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Add `:mongodb_ecto` as a dependency in your `mix.exs` file.
7676
```elixir
7777
def deps do
7878
[
79-
{:mongodb_ecto, "~> 2.1.0"}
79+
{:mongodb_ecto, "~> 2.1.1"}
8080
]
8181
end
8282
```

mix.exs

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ defmodule Mongo.Ecto.Mixfile do
22
use Mix.Project
33

44
@source_url "https://github.com/elixir-mongo/mongodb_ecto"
5-
@version "2.1.0"
5+
@version "2.1.1"
66

77
def project do
88
[
@@ -13,7 +13,7 @@ defmodule Mongo.Ecto.Mixfile do
1313
dialyzer: dialyzer(),
1414
docs: docs(),
1515
package: package(),
16-
preferred_cli_env: [docs: :docs],
16+
preferred_cli_env: [docs: :dev],
1717
test_coverage: [tool: ExCoveralls]
1818
]
1919
end
@@ -30,7 +30,7 @@ defmodule Mongo.Ecto.Mixfile do
3030
{:credo, "~> 1.5.6", only: [:dev, :test], runtime: false},
3131
{:dialyxir, "~> 1.1.0", only: :dev, runtime: false},
3232
{:ecto, "~> 3.12"},
33-
{:ex_doc, ">= 0.0.0", only: :docs, runtime: false},
33+
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
3434
{:excoveralls, "~> 0.16", only: :test},
3535
{:mongodb_driver, "~> 1.4"},
3636
{:telemetry, ">= 0.4.0"}

0 commit comments

Comments
 (0)