From ce2259f5152433067561fd80039922d06aa2c1ef Mon Sep 17 00:00:00 2001 From: Arne Brasseur Date: Wed, 19 Jun 2024 09:58:59 +0200 Subject: [PATCH] CHANGELOG --- CHANGELOG.md | 6 ++++++ test/lambdaisland/ornament_test.cljc | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index be3b1e6..cd564c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Unreleased +## Changed + +- When setting a custom `:ornament/prefix` on the namespace, the separator `__` + is no longer implied, to get the same result add `__` to the end of your + prefix string. + ## Added - Support docstrings, they come after the tagname, before any styles or tokens diff --git a/test/lambdaisland/ornament_test.cljc b/test/lambdaisland/ornament_test.cljc index e2dfe3a..a2d868b 100644 --- a/test/lambdaisland/ornament_test.cljc +++ b/test/lambdaisland/ornament_test.cljc @@ -1,4 +1,4 @@ -(ns ^{:ornament/prefix "ot"} +(ns ^{:ornament/prefix "ot__"} lambdaisland.ornament-test (:require [lambdaisland.ornament :as o] [clojure.test :refer [deftest testing is are use-fixtures run-tests join-fixtures]]