Skip to content

Commit

Permalink
Update depndencies (#30)
Browse files Browse the repository at this point in the history
* 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] <support@github.com>

* 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] <support@github.com>

* 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] <support@github.com>

* 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 <hurrycaner@macbook.local>
  • Loading branch information
3 people committed Dec 15, 2020
1 parent 485904b commit 3790279
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
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

0 comments on commit 3790279

Please sign in to comment.