activemail 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0c521ec014c788f20a2c5c093d6905f36a18388e3c8bbe69fcb664ced5c01ce2
4
- data.tar.gz: 5d20096c0870cbaee3e0f3bd945d5c9b4121c732370f310fc75ba0fd53cf75f9
3
+ metadata.gz: d7cc246dce0922db6f211036614c9c09e61f07ec31be8a8f080ec5367b639162
4
+ data.tar.gz: f73779825c12264751b039b6fdac9bce76db075d26f058f432d9b85f79529f6a
5
5
  SHA512:
6
- metadata.gz: 5362b815729d1c3ba16c1821e6cbe5e8d2e82554434ea32308d55fa58d601583b5c861246cc47c7745e88d2e1e53edd60360e5ef4ad90807a818335b2e5934f7
7
- data.tar.gz: 5bc1094caf3250acd3d3bfad1d73c3c4e6f624720b6f6b494d7a459861196c985d747db25c07d0fec9eabf616e39eba2594ad71b056e02c6a60b45180a2b5da1
6
+ metadata.gz: 6edee3036ed2af1fa135508c8b936a61a9045a48f8b44ada6e762dead35510f6a8fd0b8c623f82132d72b6726c4cb3a7adfa96c58f93eebb0eb239340cd69118
7
+ data.tar.gz: 1d49cbdcafea296842256ec928e626513d3fefe6f0d81d6ce1a2ea9229b9173735269c80123e94c832ba2bd691d8ce08468fba33cb65839cceb162de50af6c99
data/CHANGELOG.md CHANGED
@@ -5,6 +5,14 @@ All notable changes to this project are documented here.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.1.1] - 2026-06-16
9
+
10
+ ### Added
11
+
12
+ - `cta` and `info-box` are now registered out of the box in `DEFAULT_COMPONENTS`,
13
+ alongside `button`/`callout`. The components and their styles already shipped but
14
+ the tags required manual registration; `<cta>`/`<info-box>` now work by default.
15
+
8
16
  ## [1.1.0] - 2026-06-15
9
17
 
10
18
  ### Added
@@ -2,5 +2,5 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  module ActiveMail
5
- VERSION = '1.1.0'
5
+ VERSION = '1.1.1'
6
6
  end
data/lib/activemail.rb CHANGED
@@ -39,6 +39,8 @@ module ActiveMail
39
39
  DEFAULT_COMPONENTS = T.let(
40
40
  {
41
41
  'button' => ActiveMail::Components::Button,
42
+ 'cta' => ActiveMail::Components::Cta,
43
+ 'info-box' => ActiveMail::Components::InfoBox,
42
44
  'row' => ActiveMail::Components::Row,
43
45
  'columns' => ActiveMail::Components::Columns,
44
46
  'container' => ActiveMail::Components::Container,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activemail
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Advitam