diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ec21b80..5c0f607c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.17.1 - 2022-01-10 + +### Fixed + +- Fixed compatibility with Elixir 1.13 + ## 0.17.0 - 2021-11-24 ### Added diff --git a/lib/chaps/path_reader.ex b/lib/chaps/path_reader.ex index aefc936c..a545ee67 100644 --- a/lib/chaps/path_reader.ex +++ b/lib/chaps/path_reader.ex @@ -8,8 +8,7 @@ defmodule Chaps.PathReader do Returns the Mix.Project base path. """ def base_path do - Enum.find(Mix.Project.config_files(), &(&1 =~ ~r/mix.exs/)) - |> Path.dirname() + File.cwd!() end @doc """