From 9b4968d53591618c5345c69ba26d2148d353fe80 Mon Sep 17 00:00:00 2001 From: yardasol Date: Mon, 26 Feb 2024 20:15:47 +0000 Subject: [PATCH 1/2] inital changes for v0.6.0 --- doc/releasenotes/index.rst | 1 + doc/releasenotes/v0.6.0.rst | 96 +++++++++++++++++++++++++++++++++++++ saltproc/version.py | 6 +-- 3 files changed, 100 insertions(+), 3 deletions(-) create mode 100644 doc/releasenotes/v0.6.0.rst diff --git a/doc/releasenotes/index.rst b/doc/releasenotes/index.rst index 1c6e4ed67..44c000826 100644 --- a/doc/releasenotes/index.rst +++ b/doc/releasenotes/index.rst @@ -7,6 +7,7 @@ Release Notes .. toctree:: :maxdepth: 1 + v0.6.0 v0.5.0 v0.4.0 v0.3.0 diff --git a/doc/releasenotes/v0.6.0.rst b/doc/releasenotes/v0.6.0.rst new file mode 100644 index 000000000..69bfafe77 --- /dev/null +++ b/doc/releasenotes/v0.6.0.rst @@ -0,0 +1,96 @@ +======================== +Release notes for v0.6.0 +======================== + +.. note:: These release notes are currently in production. + +.. + When documenting a bug fix or feature, please do so in the following format + +.. + - `Fixed typo in depcode.py `_ by @pr_author_username + +.. + Links to packages/issues/bug fixes/contributors/reviewers + + + + +Summary +======= + +.. + Describe generally the features of this release + + + + +Dependency Changes +================== + +.. + Describe any new/removed/modified package dependencies + + + + +New Features +============ + +.. + Describe any new features to the code. + + + + +Bug Fixes +========= + +.. + Describe any bug fixes. + + + + +Script Changes +============== + +.. + Describe any script additions/modifications/removals + + + + +Python API Changes +================== + +.. + Describe any changes to the API + + + + +Contributors +============ +.. + List of people who contributed features and fixes to this release + +The following people contributed code to this release of SaltProc: + +.. + `@gh_username `_ + + + + +Reviewers +========= +.. + List of people who reviewed PRs for this release + +The following people reviewed code for this release of SaltProc: + +.. + `@gh_username `_ + + diff --git a/saltproc/version.py b/saltproc/version.py index 4d4a105b4..8175627f6 100644 --- a/saltproc/version.py +++ b/saltproc/version.py @@ -3,10 +3,10 @@ # Format expected by setup.py and doc/source/conf.py: string of form "X.Y.Z" _version_major = 0 -_version_minor = 5 +_version_minor = 6 _version_micro = '' # use '' for first of series, number for 1 and above -# _version_extra = 'dev' -_version_extra = '0' # Uncomment this for full releases +_version_extra = 'dev' +# _version_extra = '0' # Uncomment this for full releases # Construct full version string from these. _ver = [_version_major, _version_minor] From 444a85b1bf2ff5ba63c7345d8fb211dcb0849bb7 Mon Sep 17 00:00:00 2001 From: yardasol Date: Mon, 26 Feb 2024 20:16:05 +0000 Subject: [PATCH 2/2] final changes before publishing v0.6.0 --- doc/releasenotes/v0.6.0.rst | 2 +- saltproc/version.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/releasenotes/v0.6.0.rst b/doc/releasenotes/v0.6.0.rst index 69bfafe77..340f722f0 100644 --- a/doc/releasenotes/v0.6.0.rst +++ b/doc/releasenotes/v0.6.0.rst @@ -2,7 +2,7 @@ Release notes for v0.6.0 ======================== -.. note:: These release notes are currently in production. + .. When documenting a bug fix or feature, please do so in the following format diff --git a/saltproc/version.py b/saltproc/version.py index 8175627f6..3aa47791f 100644 --- a/saltproc/version.py +++ b/saltproc/version.py @@ -5,8 +5,8 @@ _version_major = 0 _version_minor = 6 _version_micro = '' # use '' for first of series, number for 1 and above -_version_extra = 'dev' -# _version_extra = '0' # Uncomment this for full releases +# _version_extra = 'dev' +_version_extra = '0' # Uncomment this for full releases # Construct full version string from these. _ver = [_version_major, _version_minor]