diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2750204..c990862 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,7 +6,7 @@ permissions: on: push: tags: - - [0-9]+.[0-9]+.[0-9]+ + - "[0-9]+.[0-9]+.[0-9]+" jobs: # First we are going to create a task that generates a new release in GitHub diff --git a/conda-recipes/meta.yaml b/conda-recipes/meta.yaml index d9fca37..963352c 100644 --- a/conda-recipes/meta.yaml +++ b/conda-recipes/meta.yaml @@ -1,7 +1,7 @@ {% set VERSION_SUFFIX = "" %} # debug version suffix, appended to the version package: - name: numba_rvsdg + name: numba-rvsdg # GIT_DESCRIBE_TAG may not be set version: {{ "%s%s" % (environ.get('GIT_DESCRIBE_TAG', ''), VERSION_SUFFIX) }} @@ -33,6 +33,6 @@ test: about: summary: Numba Compatible RVSDG utilities - home: https://github.com/numba/numba_rvsdg + home: https://github.com/numba/numba-rvsdg license: Simplified BSD License license_file: LICENSE diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 75702be..44d5152 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -2,6 +2,21 @@ Release Notes ============= +Version 0.0.5 - 2023-08-11 +========================== + +This is a maintenance release to fix the name of the conda package such that it +matches the name of the PyPi project: `numba-rvsdg`. + +Pull-Requests: + +* PR `#103 `_: numba_rvsdg -> numba-rvsdg (`esc `_) +* PR `#104 `_: fix regex when detecting tags (`esc `_) + +Authors: + +* `esc `_ + Version 0.0.4 - 2023-08-11 ========================== diff --git a/pyproject.toml b/pyproject.toml index 9ff1b7e..be433ea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "numba_rvsdg" -version = "0.0.4" +version = "0.0.5" authors = [ {name = "Numba Developers", email="none@none.none"}, ]