Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ All notable changes to this project are documented here.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.1.1] - 2026-06-16

### Added

- `cta` and `info-box` are now registered out of the box in `DEFAULT_COMPONENTS`,
alongside `button`/`callout`. The components and their styles already shipped but
the tags required manual registration; `<cta>`/`<info-box>` now work by default.

## [1.1.0] - 2026-06-15

### Added
Expand Down
2 changes: 2 additions & 0 deletions lib/activemail.rb
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ class Core
DEFAULT_COMPONENTS = T.let(
{
'button' => ActiveMail::Components::Button,
'cta' => ActiveMail::Components::Cta,
'info-box' => ActiveMail::Components::InfoBox,
'row' => ActiveMail::Components::Row,
'columns' => ActiveMail::Components::Columns,
'container' => ActiveMail::Components::Container,
Expand Down
2 changes: 1 addition & 1 deletion lib/activemail/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
# frozen_string_literal: true

module ActiveMail
VERSION = '1.1.0'
VERSION = '1.1.1'
end
Loading