From 5c3ccce9f10d1c74f776c5a8cee3b05afad3171b Mon Sep 17 00:00:00 2001 From: John Shaffer Date: Thu, 19 Sep 2024 11:03:40 -0500 Subject: [PATCH] Version 2.3.1 --- CHANGELOG.md | 2 ++ build.clj | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 55ef08f..fa1a899 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ## Unreleased +## v2.3.1 (2024-09-19) + - Fix a number of cases where a valid map such as `{"Ref":,,,}` passed to a function resulted in an error. These functions could only accept strings, keywords, and symbols. This has been fixed so that they now accept any valid form. ## v2.3.0 (2024-04-12) diff --git a/build.clj b/build.clj index b050620..d34a6a4 100644 --- a/build.clj +++ b/build.clj @@ -2,7 +2,7 @@ (:require [org.corfield.build :as bb])) (def lib 'io.staticweb/cloudformation-templating) -(def version "2.3.0") +(def version "2.3.1") (defn get-version [opts] (str version (when (:snapshot opts) "-SNAPSHOT")))