Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update depndencies #30

Merged
merged 7 commits into from
Dec 15, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [1.5.0]
### Changed
- Bumped dependency `fs` to version `6.9`
- Bumped dependency `earmark` to version `1.4.12`
- Bumped dependency `ex_doc` to version `0.23.0`

## [1.4.0]
### Changed
- strip `app/my_app` from file if configured with `umbrella_app: true`
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ ExGuard is a mix command to handle events on file system modifications, ExGuard

```elixir
def deps do
[{:ex_guard, "~> 1.3", only: :dev}]
[{:ex_guard, "~> 1.5", only: :dev}]
end
```

Expand Down
2 changes: 1 addition & 1 deletion lib/ex_guard/config.ex
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ defmodule ExGuard.Config do
Loads ExGuard config file
"""
def load(config_file) do
Code.load_file(config_file)
Code.require_file(config_file)
end

@doc """
Expand Down
8 changes: 6 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule ExGuard.Mixfile do
use Mix.Project

@version "1.4.0"
@version "1.5.0"

def project do
[
Expand All @@ -24,7 +24,11 @@ defmodule ExGuard.Mixfile do
end

defp deps do
[{:fs, "~> 0.9"}, {:ex_doc, "~> 0.19.1", only: :dev}, {:earmark, "~> 1.2.0", only: :dev}]
[
{:fs, "~> 6.9"},
{:ex_doc, "~> 0.23.0", only: :dev},
{:earmark, "~> 1.4.12", only: :dev}
]
end

defp package do
Expand Down