From 5ff989885f3b944dcf1ed20ccc1d24396640f734 Mon Sep 17 00:00:00 2001 From: Sophia Castellarin Date: Thu, 30 Jan 2025 11:11:41 -0800 Subject: [PATCH] Bump dev version (#1066) --- .github/ISSUE_TEMPLATE/new-release.md | 5 ++--- conda-store-server/conda_store_server/__init__.py | 2 +- conda-store/conda_store/__init__.py | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/new-release.md b/.github/ISSUE_TEMPLATE/new-release.md index a06fa78c9..0d45f5ad1 100644 --- a/.github/ISSUE_TEMPLATE/new-release.md +++ b/.github/ISSUE_TEMPLATE/new-release.md @@ -22,10 +22,10 @@ Release captain responsible - <@gh_username> ### 2. Prepare the codebase for a new release -- [ ] Prepare the release by running the `cut-release-pr.sh` script +- [ ] Prepare the release by running the `cut-release-pr.sh` script (ensure you have the conda-store-dev env activated and a valid GITHUB_ACCESS_TOKEN) ```bash - ./cut-release-pr.sh -r -c + ./tools/cut-release-pr.sh -r -c ``` - [ ] Ensure that the conda-store, conda-store-server, conda-store-ui versions have been updated @@ -58,5 +58,4 @@ Release captain responsible - <@gh_username> - [ ] Update the [conda-forge feedstock version](https://github.com/conda-forge/conda-store-feedstock) through a PR or review and merge the regro-bot PR. - [ ] If needed - update `meta.yaml` or `recipe.yaml` and re-render the feedstock. - [ ] Open a follow-up PR to bump `conda-store` and `conda-store-server` versions to the next dev-release number (for example `2024.10.1`). -- [ ] Open a follow-up PR to bump the `conda-store-server` version in the [`conda-store-ui` compose file](https://github.com/conda-incubator/conda-store-ui/blob/main/docker-compose.yml). - [ ] Celebrate, you're done! 🎉 diff --git a/conda-store-server/conda_store_server/__init__.py b/conda-store-server/conda_store_server/__init__.py index 199cd43a8..b40fbfeb4 100644 --- a/conda-store-server/conda_store_server/__init__.py +++ b/conda-store-server/conda_store_server/__init__.py @@ -14,7 +14,7 @@ from .app import CondaStore -__version__ = "2025.1.1" +__version__ = "2025.1.2-dev" CONDA_STORE_DIR = platformdirs.user_data_path(appname="conda-store") diff --git a/conda-store/conda_store/__init__.py b/conda-store/conda_store/__init__.py index 73031e9bb..6736c8f72 100644 --- a/conda-store/conda_store/__init__.py +++ b/conda-store/conda_store/__init__.py @@ -2,4 +2,4 @@ # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. -__version__ = "2025.1.1" +__version__ = "2025.1.2-dev"