From 17cec436dfe999161f96bd1a8a7aa1d9abcc5151 Mon Sep 17 00:00:00 2001 From: Schuyler Martin Date: Thu, 5 Dec 2024 09:43:33 -0700 Subject: [PATCH] v0.4.0 (#266) --- CHANGELOG.md | 6 ++++++ docs/conf.py | 2 +- pyproject.toml | 2 +- recipe/meta.yaml | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee8774c0..14f59921 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ NOTES: - Version releases in the 0.x.y range may introduce breaking changes. - See the auto-generated release notes for more details. +## 0.4.0 +- Introduces MVP for the `bump-recipe` command. This command should be able to update the + version number, build number, and SHA-256 hash for most simple recipe files. +- Starts work for scanning `pyproject.toml` dependencies +- Minor bug fixes and infrastructure improvements. + ## 0.3.4 - Makes `DependencyVariable` type hashable. diff --git a/docs/conf.py b/docs/conf.py index eb1bda63..c5b28915 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -11,7 +11,7 @@ """ project = "Conda Recipe Manager" author = "various" -release = "0.3.4" +release = "0.4.0" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index 22524f6b..c317fdd2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ exclude = ["tests"] [project] name = "conda_recipe_manager" -version = "0.3.4" +version = "0.4.0" authors = [ { name="Anaconda, Inc.", email="distribution_team@anaconda.com" }, ] diff --git a/recipe/meta.yaml b/recipe/meta.yaml index ad6ebf87..dc5b94b6 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -1,5 +1,5 @@ {% set name = "conda-recipe-manager" %} -{% set version = "0.3.4" %} +{% set version = "0.4.0" %} package: name: {{ name|lower }}