Skip to content

Commit

Permalink
Bump dev version (#1066)
Browse files Browse the repository at this point in the history
  • Loading branch information
soapy1 authored Jan 30, 2025
1 parent cf98a97 commit 5ff9898
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .github/ISSUE_TEMPLATE/new-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <conda-store version> -c <conda-store-ui version>
./tools/cut-release-pr.sh -r <conda-store version> -c <conda-store-ui version>
```

- [ ] Ensure that the conda-store, conda-store-server, conda-store-ui versions have been updated
Expand Down Expand Up @@ -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! 🎉
2 changes: 1 addition & 1 deletion conda-store-server/conda_store_server/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion conda-store/conda_store/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 5ff9898

Please sign in to comment.