Skip to content

Commit 973d321

Browse files
committed
inital changes for v0.6.0
1 parent d90d275 commit 973d321

File tree

3 files changed

+100
-3
lines changed

3 files changed

+100
-3
lines changed

doc/releasenotes/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Release Notes
77
.. toctree::
88
:maxdepth: 1
99

10+
v0.6.0
1011
v0.5.0
1112
v0.4.0
1213
v0.3.0

doc/releasenotes/v0.6.0.rst

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
========================
2+
Release notes for v0.6.0
3+
========================
4+
5+
.. note:: These release notes are currently in production.
6+
7+
..
8+
When documenting a bug fix or feature, please do so in the following format
9+
10+
..
11+
- `Fixed typo in depcode.py <https://github.com/arfc/saltproc/pull/xx>`_ by @pr_author_username
12+
13+
..
14+
Links to packages/issues/bug fixes/contributors/reviewers
15+
16+
17+
18+
19+
Summary
20+
=======
21+
22+
..
23+
Describe generally the features of this release
24+
25+
26+
27+
28+
Dependency Changes
29+
==================
30+
31+
..
32+
Describe any new/removed/modified package dependencies
33+
34+
35+
36+
37+
New Features
38+
============
39+
40+
..
41+
Describe any new features to the code.
42+
43+
44+
45+
46+
Bug Fixes
47+
=========
48+
49+
..
50+
Describe any bug fixes.
51+
52+
53+
54+
55+
Script Changes
56+
==============
57+
58+
..
59+
Describe any script additions/modifications/removals
60+
61+
62+
63+
64+
Python API Changes
65+
==================
66+
67+
..
68+
Describe any changes to the API
69+
70+
71+
72+
73+
Contributors
74+
============
75+
..
76+
List of people who contributed features and fixes to this release
77+
78+
The following people contributed code to this release of SaltProc:
79+
80+
..
81+
`@gh_username <https://github.com/gh_uname>`_
82+
83+
84+
85+
86+
Reviewers
87+
=========
88+
..
89+
List of people who reviewed PRs for this release
90+
91+
The following people reviewed code for this release of SaltProc:
92+
93+
..
94+
`@gh_username <https://github.com/gh_uname>`_
95+
96+

saltproc/version.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33

44
# Format expected by setup.py and doc/source/conf.py: string of form "X.Y.Z"
55
_version_major = 0
6-
_version_minor = 5
6+
_version_minor = 6
77
_version_micro = '' # use '' for first of series, number for 1 and above
8-
# _version_extra = 'dev'
9-
_version_extra = '0' # Uncomment this for full releases
8+
_version_extra = 'dev'
9+
# _version_extra = '0' # Uncomment this for full releases
1010

1111
# Construct full version string from these.
1212
_ver = [_version_major, _version_minor]

0 commit comments

Comments
 (0)