diff --git a/CHANGELOG.md b/CHANGELOG.md index 4db527f..1588bca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. 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). +### v0.1.4 (2024-06-05) + +* **Add**: Relax constraints to allow version `1.0` of dependency `filesystem` (thanks [@nshafer](https://github.com/nshafer)) + ### v0.1.3 (2023-02-26) * **Add**: Automatically dereference symlinks during copy (requires Elixir 1.14) (thanks [@derek-zhou](https://github.com/derek-zhou)) diff --git a/README.md b/README.md index 2451e88..d4db236 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ If you plan to copy assets in production, then add `phoenix_copy` as a dependenc ```elixir def deps do [ - {:phoenix_copy, "~> 0.1.3"} + {:phoenix_copy, "~> 0.1.4"} ] end ``` diff --git a/mix.exs b/mix.exs index 65ce9e5..73e6c5c 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Phoenix.Copy.MixProject do def project do [ app: :phoenix_copy, - version: "0.1.3", + version: "0.1.4", elixir: "~> 1.9", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,