Skip to content

Commit

Permalink
0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joeldrapper committed Apr 18, 2023
1 parent c3f590d commit 85bfd19
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 4 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Changelog

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).

## 0.10.0

Added

- You can now render procs and lambdas and enumerables of renderables.
- Experimental streaming interface

Fixed

- Escaped ERB captures
- Use buffered component unless renderin in a template

***

Before this changelog was introduced, changes were logged in the [release notes](https://github.com/phlex-ruby/phlex/releases).
2 changes: 1 addition & 1 deletion lib/phlex/rails/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Phlex
module Rails
VERSION = "0.8.1"
VERSION = "0.10.0"
end
end
6 changes: 3 additions & 3 deletions phlex-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ Gem::Specification.new do |spec|
spec.required_ruby_version = ">= 2.7"

spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/joeldrapper/phlex"
spec.metadata["changelog_uri"] = "https://github.com/joeldrapper/phlex/releases"
spec.metadata["source_code_uri"] = "https://github.com/phlex-ruby/phlex-rails"
spec.metadata["changelog_uri"] = "https://github.com/phlex-ruby/phlex-rails/blob/main/CHANGELOG.md"
spec.metadata["funding_uri"] = "https://github.com/sponsors/joeldrapper"

# Specify which files should be added to the gem when it is released.
Expand All @@ -30,7 +30,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_dependency "phlex", "~> 1.6"
spec.add_dependency "phlex", "~> 1.7.0"
spec.add_dependency "rails", ">= 6.1", "< 8"
spec.add_dependency "zeitwerk", "~> 2.6"

Expand Down

0 comments on commit 85bfd19

Please sign in to comment.