From 933342d8600c53699c4952a71c8d1ec6d2a3c1cb Mon Sep 17 00:00:00 2001 From: Clemens Geibel Date: Wed, 11 May 2022 14:14:29 +0200 Subject: [PATCH] Changed letsencrypt issuer stages from keywords to strings. --- project-cljs.clj | 2 +- project.clj | 2 +- src/main/cljc/dda/c4k_common/predicate.cljc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/project-cljs.clj b/project-cljs.clj index 01aea27..bd92c1a 100644 --- a/project-cljs.clj +++ b/project-cljs.clj @@ -1,4 +1,4 @@ -(defproject org.domaindrivenarchitecture/c4k-common-cljs "1.1.6-SNAPSHOT" +(defproject org.domaindrivenarchitecture/c4k-common-cljs "2.0.0-SNAPSHOT" :description "Contains predicates and tools for c4k" :url "https://domaindrivenarchitecture.org" :license {:name "Apache License, Version 2.0" diff --git a/project.clj b/project.clj index 967b672..218018a 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject org.domaindrivenarchitecture/c4k-common-clj "1.1.5-SNAPSHOT" +(defproject org.domaindrivenarchitecture/c4k-common-clj "2.0.0-SNAPSHOT" :description "Contains predicates and tools for c4k" :url "https://domaindrivenarchitecture.org" :license {:name "Apache License, Version 2.0" diff --git a/src/main/cljc/dda/c4k_common/predicate.cljc b/src/main/cljc/dda/c4k_common/predicate.cljc index 9c7c992..07ccf7c 100644 --- a/src/main/cljc/dda/c4k_common/predicate.cljc +++ b/src/main/cljc/dda/c4k_common/predicate.cljc @@ -12,7 +12,7 @@ (defn letsencrypt-issuer? [input] - (contains? #{:prod :staging} input)) + (contains? #{"prod" "staging"} input)) (defn map-or-seq? [input]