Skip to content

Commit

Permalink
v0.4.0 (#266)
Browse files Browse the repository at this point in the history
  • Loading branch information
schuylermartin45 authored Dec 5, 2024
1 parent 69d7184 commit 17cec43
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
]
Expand Down
2 changes: 1 addition & 1 deletion recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "conda-recipe-manager" %}
{% set version = "0.3.4" %}
{% set version = "0.4.0" %}

package:
name: {{ name|lower }}
Expand Down

0 comments on commit 17cec43

Please sign in to comment.