Skip to content

Commit 3790279

Browse files
hurrycanerdependabot[bot]Gustavo Schirmer
authored
Update depndencies (#30)
* Update fs requirement from ~> 0.9 to ~> 6.9 Updates the requirements on [fs](https://github.com/synrc/fs) to permit the latest version. - [Release notes](https://github.com/synrc/fs/releases) - [Commits](https://github.com/synrc/fs/commits) Signed-off-by: dependabot[bot] <[email protected]> * Update ex_doc requirement from ~> 0.19.1 to ~> 0.23.0 Updates the requirements on [ex_doc](https://github.com/elixir-lang/ex_doc) to permit the latest version. - [Release notes](https://github.com/elixir-lang/ex_doc/releases) - [Changelog](https://github.com/elixir-lang/ex_doc/blob/master/CHANGELOG.md) - [Commits](elixir-lang/ex_doc@v0.19.1...v0.23.0) Signed-off-by: dependabot[bot] <[email protected]> * Update earmark requirement from ~> 1.2.0 to ~> 1.4.12 Updates the requirements on [earmark](https://github.com/pragdave/earmark) to permit the latest version. - [Release notes](https://github.com/pragdave/earmark/releases) - [Changelog](https://github.com/pragdave/earmark/blob/master/RELEASE.md) - [Commits](pragdave/earmark@v1.2.1...v1.4.12) Signed-off-by: dependabot[bot] <[email protected]> * feat: add changelog and change readme * fix: remove lock, remove deprecated Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Gustavo Schirmer <[email protected]>
1 parent 485904b commit 3790279

4 files changed

Lines changed: 14 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [1.5.0]
2+
### Changed
3+
- Bumped dependency `fs` to version `6.9`
4+
- Bumped dependency `earmark` to version `1.4.12`
5+
- Bumped dependency `ex_doc` to version `0.23.0`
6+
17
## [1.4.0]
28
### Changed
39
- strip `app/my_app` from file if configured with `umbrella_app: true`

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ExGuard is a mix command to handle events on file system modifications, ExGuard
1919

2020
```elixir
2121
def deps do
22-
[{:ex_guard, "~> 1.3", only: :dev}]
22+
[{:ex_guard, "~> 1.5", only: :dev}]
2323
end
2424
```
2525

lib/ex_guard/config.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ defmodule ExGuard.Config do
1313
Loads ExGuard config file
1414
"""
1515
def load(config_file) do
16-
Code.load_file(config_file)
16+
Code.require_file(config_file)
1717
end
1818

1919
@doc """

mix.exs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule ExGuard.Mixfile do
22
use Mix.Project
33

4-
@version "1.4.0"
4+
@version "1.5.0"
55

66
def project do
77
[
@@ -24,7 +24,11 @@ defmodule ExGuard.Mixfile do
2424
end
2525

2626
defp deps do
27-
[{:fs, "~> 0.9"}, {:ex_doc, "~> 0.19.1", only: :dev}, {:earmark, "~> 1.2.0", only: :dev}]
27+
[
28+
{:fs, "~> 6.9"},
29+
{:ex_doc, "~> 0.23.0", only: :dev},
30+
{:earmark, "~> 1.4.12", only: :dev}
31+
]
2832
end
2933

3034
defp package do

0 commit comments

Comments
 (0)