Skip to content

Commit 54c860a

Browse files
committed
Update version 0.4.4
1 parent 7f8f1d4 commit 54c860a

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

project.clj

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject tadam-core "0.4.3"
1+
(defproject tadam-core "0.4.4"
22
:description "Tadam Framework Core: Library to create dynamic pages"
33
:url "https://github.com/tadam-framework/tadam-core"
44
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
@@ -20,12 +20,13 @@
2020
[buddy/buddy-core "1.6.0"]
2121
[buddy/buddy-hashers "1.4.0"]
2222
;; Send emails
23-
[clj-kondo "RELEASE"]
24-
[com.draines/postal "2.0.3"]]
23+
[com.draines/postal "2.0.3"]
24+
;; Linter
25+
[clj-kondo "RELEASE"]]
2526
:plugins [;; DEV TOOLS
2627
;;; Check idiomatic bug
2728
[lein-kibit "0.1.7"]]
2829
;; ALIAS
2930
:aliases {"check-idiomatic" ["kibit" "src"]
30-
"check-lint" ["run" "-m" "clj-kondo.main" "--lint" "src"]}
31+
"check-lint" ["run" "-m" "clj-kondo.main" "--lint" "src"]}
3132
:repl-options {:init-ns tadam.core})

src/tadam/email.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
(:require
33
[postal.core :refer [send-message]]))
44

5-
(defn send
5+
(defn send-email
66
"Send email"
77
[config to subject content-html content-plain]
88
(send-message {:host (:smtp-host config)

0 commit comments

Comments
 (0)