Skip to content

Commit f9b0a0e

Browse files
committed
Release Keila 0.13.0
1 parent 1b443fc commit f9b0a0e

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
## Unreleased
44

5+
6+
## Version 0.13.0
7+
8+
Double Opt-In ✅
9+
10+
### Added
11+
- Added support for double opt-in/confirmed opt in.
12+
Forms can now be configured to enable double opt-in to require new subscribers
13+
to confirm their email address before they are added as contacts to the
14+
project.
15+
16+
### Changed
17+
- Updated Elixir to 1.15
18+
- Translatable labels for first name and last name in form builder
19+
- Refactored Form controller to separate config UI from public routes
20+
- Refactored how form submissions are processed
21+
- Refactored how Markdown campaigns are built
22+
523
### Fixed
624
- Added support for additional JPEG variant (this avoids errors when uploading
725
previously unrecognized JPEG files)

mix.exs

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defmodule Keila.MixProject do
44
def project do
55
[
66
app: :keila,
7-
version: "0.12.8",
7+
version: "0.13.0",
88
elixir: "~> 1.15",
99
elixirc_paths: elixirc_paths(Mix.env()),
1010
compilers: [:phoenix] ++ Mix.compilers(),
@@ -23,7 +23,7 @@ defmodule Keila.MixProject do
2323
def application do
2424
[
2525
mod: {Keila.Application, []},
26-
extra_applications: [:logger, :runtime_tools]
26+
extra_applications: [:logger, :runtime_tools, :public_key, :crypto]
2727
]
2828
end
2929

0 commit comments

Comments
 (0)