Skip to content

Commit

Permalink
Release Keila 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wmnnd committed Dec 11, 2023
1 parent 1b443fc commit f9b0a0e
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

## Unreleased


## Version 0.13.0

Double Opt-In ✅

### Added
- Added support for double opt-in/confirmed opt in.
Forms can now be configured to enable double opt-in to require new subscribers
to confirm their email address before they are added as contacts to the
project.

### Changed
- Updated Elixir to 1.15
- Translatable labels for first name and last name in form builder
- Refactored Form controller to separate config UI from public routes
- Refactored how form submissions are processed
- Refactored how Markdown campaigns are built

### Fixed
- Added support for additional JPEG variant (this avoids errors when uploading
previously unrecognized JPEG files)
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule Keila.MixProject do
def project do
[
app: :keila,
version: "0.12.8",
version: "0.13.0",
elixir: "~> 1.15",
elixirc_paths: elixirc_paths(Mix.env()),
compilers: [:phoenix] ++ Mix.compilers(),
Expand All @@ -23,7 +23,7 @@ defmodule Keila.MixProject do
def application do
[
mod: {Keila.Application, []},
extra_applications: [:logger, :runtime_tools]
extra_applications: [:logger, :runtime_tools, :public_key, :crypto]
]
end

Expand Down

0 comments on commit f9b0a0e

Please sign in to comment.