From 5b41eb52a6c9b498a86711919ef22d65f14c2d0f Mon Sep 17 00:00:00 2001 From: Joel Drapper Date: Fri, 24 Nov 2023 13:12:29 +0000 Subject: [PATCH] Bump 1.0.1 --- CHANGELOG.md | 8 ++++++++ lib/phlex/rails/version.rb | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d53f8937..1a7a7962 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ 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.0.1] 2023-11-24 + +- Dropped dependency on `rails` and now only depends on `railties` +- Fix an out of order rendering issue when yielding from a partial rendered with a block delegated from a component’s content block +- Added `flash` helper adapter in `Phlex::Rails::Helpers::Flash` +- Removed experimental form component + ## [1.0.0] 2023-04-19 ### Added diff --git a/lib/phlex/rails/version.rb b/lib/phlex/rails/version.rb index 343dd8fa..3b3cf88b 100644 --- a/lib/phlex/rails/version.rb +++ b/lib/phlex/rails/version.rb @@ -2,6 +2,6 @@ module Phlex module Rails - VERSION = "1.0.0" + VERSION = "1.0.1" end end