diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 40109fe0..28009144 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -124,7 +124,7 @@ jobs: docs: name: Build and publish docs - if: startsWith(github.ref, 'tags/v2.') # Only for version 2.X.X + if: contains(github.ref, 'tags/v2.') # Only for version 2.X.X needs: deploy diff --git a/CHANGELOG.md b/CHANGELOG.md index fab87934..13f5ddc3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.2] - 2025-10-20 +### Fixed +- CI docs build & deploy condition + + ## [2.0.1] - 2025-10-15 ### Fixed - Logging duplication on CloudWatch side diff --git a/docs/antora-playbook.yml b/docs/antora-playbook.yml index 30a2d678..636591eb 100644 --- a/docs/antora-playbook.yml +++ b/docs/antora-playbook.yml @@ -7,7 +7,7 @@ content: start_path: docs branches: [] # branches: HEAD # Use this for local development - tags: [v2.0.1] + tags: [v2.0.2] asciidoc: attributes: page-toclevels: 5 diff --git a/docs/antora.yml b/docs/antora.yml index 70550115..e1a94880 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -1,3 +1,3 @@ name: corva-sdk -version: 2.0.1 +version: 2.0.2 nav: [modules/ROOT/nav.adoc] diff --git a/pyproject.toml b/pyproject.toml index 7483f652..073ed6d0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" name = "corva-sdk" description = "SDK for building Corva DevCenter Python apps." readme = "README.md" -version = "2.0.1" +version = "2.0.2" license = { text = "The Unlicense" } authors = [ { name = "Jordan Ambra", email = "jordan.ambra@corva.ai" } diff --git a/src/version.py b/src/version.py index b46c2e74..311aff26 100644 --- a/src/version.py +++ b/src/version.py @@ -1 +1 @@ -VERSION = "2.0.1" +VERSION = "2.0.2"