Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[INIT] Update version.py and create release notes for version v0.6.0 #202

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/releasenotes/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Release Notes
.. toctree::
:maxdepth: 1

v0.6.0
v0.5.0
v0.4.0
v0.3.0
96 changes: 96 additions & 0 deletions doc/releasenotes/v0.6.0.rst
Original file line number Diff line number Diff line change
@@ -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 <https://github.com/arfc/saltproc/pull/xx>`_ 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 <https://github.com/gh_uname>`_




Reviewers
=========
..
List of people who reviewed PRs for this release

The following people reviewed code for this release of SaltProc:

..
`@gh_username <https://github.com/gh_uname>`_


6 changes: 3 additions & 3 deletions saltproc/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down