File tree 2 files changed +20
-2
lines changed
2 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Unreleased
4
4
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
+
5
23
### Fixed
6
24
- Added support for additional JPEG variant (this avoids errors when uploading
7
25
previously unrecognized JPEG files)
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ defmodule Keila.MixProject do
4
4
def project do
5
5
[
6
6
app: :keila ,
7
- version: "0.12.8 " ,
7
+ version: "0.13.0 " ,
8
8
elixir: "~> 1.15" ,
9
9
elixirc_paths: elixirc_paths ( Mix . env ( ) ) ,
10
10
compilers: [ :phoenix ] ++ Mix . compilers ( ) ,
@@ -23,7 +23,7 @@ defmodule Keila.MixProject do
23
23
def application do
24
24
[
25
25
mod: { Keila.Application , [ ] } ,
26
- extra_applications: [ :logger , :runtime_tools ]
26
+ extra_applications: [ :logger , :runtime_tools , :public_key ]
27
27
]
28
28
end
29
29
You can’t perform that action at this time.
0 commit comments