From f5dae23d5a2f6c2ee1a417705e425ff9c506b75f Mon Sep 17 00:00:00 2001 From: Rob Fox Date: Fri, 16 Jan 2026 22:11:04 +0000 Subject: [PATCH 1/2] increment version number --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 32a2d54..03d5c87 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "dash-builder" -version = "0.1.5" +version = "0.2.0" description = "A tool and framework to simplify construction of Python Dash applications." readme = "README.md" authors = [{ name = "robfs", email = "robfoxsimms@gmail.com" }] From 3cba668344de5d432091e221642ae6f04f591756 Mon Sep 17 00:00:00 2001 From: Rob Fox Date: Sat, 17 Jan 2026 09:48:23 +0000 Subject: [PATCH 2/2] Change `merge_back_from_main` in release pipeline to `true` --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0c8c61c..c6ba754 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,7 @@ jobs: with: develop_branch: "develop" main_branch: "main" - merge_back_from_main: false + merge_back_from_main: true version: ${{ inputs.version }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}