From 41c24227dae2c0b29e5d4112f524dd8ac5c1e1d3 Mon Sep 17 00:00:00 2001 From: Po Chen Date: Mon, 8 Jan 2024 08:09:20 +1100 Subject: [PATCH] v1.2.1 --- CHANGELOG.md | 6 ++++++ mix.exs | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a382c5d..f25d352 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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). +## 1.2.1 - 2024-01-08 + +### Maintenance + +- Relax `phoenix_html` dependency requirement, allowing `~> 4.0` + ## 1.2.0 - 2023-02-19 ### Feature diff --git a/mix.exs b/mix.exs index bda107c..64c3c45 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule PhoenixSwoosh.Mixfile do use Mix.Project @source_url "https://github.com/swoosh/phoenix_swoosh" - @version "1.2.0" + @version "1.2.1" def project do [ @@ -27,7 +27,7 @@ defmodule PhoenixSwoosh.Mixfile do [ {:swoosh, "~> 1.5"}, {:phoenix_view, "~> 1.0 or ~> 2.0"}, - {:phoenix_html, "~> 3.0", optional: true}, + {:phoenix_html, "~> 3.0 or ~> 4.0", optional: true}, {:hackney, "~> 1.10", optional: true}, {:finch, "~> 0.8", optional: true}, {:phoenix, "~> 1.6", optional: true},