From 467c877dd308fd5f74c2b21cdd209568045b71fa Mon Sep 17 00:00:00 2001 From: Stig Brautaset <stig@circleci.com> Date: Fri, 22 Mar 2024 15:48:17 +0000 Subject: [PATCH] All jobs required by deploy job must also run for tags It is not sufficient to make the publish job run for tags, we need to make all its required jobs run for tags too. --- .circleci/config.yml | 15 ++++++++++++--- CHANGELOG.md | 8 +++++++- 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0c97b80..570877b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -39,9 +39,18 @@ workflows: version: 2 test_and_publish: jobs: - - clj-kondo - - docs - - test + - clj-kondo: + filters: + tags: + only: /.*/ + - docs: + filters: + tags: + only: /.*/ + - test: + filters: + tags: + only: /.*/ - publish: context: clojars-publish requires: diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e3613b..3469024 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -Version 0.10.0 (March 22, 2024) +Version 0.10.1 (March 22, 2024) ================================ * [#25](https://github.com/circleci/analytics-clj/pull/25): Update CODEOWNERS with more relevant team @@ -10,6 +10,12 @@ Version 0.10.0 (March 22, 2024) * [#27](https://github.com/circleci/analytics-clj/pull/27): Bump transitive dependency okio-java and move it to managed-dependencies * [#34](https://github.com/circleci/analytics-clj/pull/34): Bump `com.segment.analytics.java` dependency +Version 0.10.0 (March 22, 2024) +================================ + +Not pushed to Clojars because of a bug in the new automatic publishing CI job. + + Version 0.8.2 (October 3, 2023) ================================