Skip to content

Commit f23d9ba

Browse files
authored
Update README.rst
1 parent d5ac9ca commit f23d9ba

File tree

1 file changed

+15
-8
lines changed

1 file changed

+15
-8
lines changed

README.rst

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,8 @@ This would create environment variables in the lambda instance upon deploy. If y
169169
Development
170170
===========
171171

172-
Development of this happens on GitHub, patches including tests, documentation are very welcome, as well as bug reports and feature contributions are welcome! Also please open an issue if this tool does not function as you'd expect.
172+
Development of "python-lambda" is facilitated exclusively on GitHub. Contributions in the form of patches, tests and feature creation and/or requests are very welcome and highly encouraged. Please open an issue if this tool does not function as you'd expect.
173+
173174

174175
How to release updates
175176
----------------------
@@ -180,10 +181,16 @@ Once complete, execute the following commands:
180181

181182
.. code:: bash
182183
183-
$ git checkout master
184-
$ bumpversion [major|minor|patch]
185-
$
186-
$ python setup.py sdist bdist_wheel upload
187-
$
188-
$ bumpversion --no-tag patch
189-
$ git push origin master --tags
184+
git checkout master
185+
186+
# Increment the version number and tag the release.
187+
bumpversion [major|minor|patch]
188+
189+
# Upload the distribution to PyPi
190+
python setup.py sdist bdist_wheel upload
191+
192+
# Since master often contains work-in-progress changes, increment the version
193+
# to a patch release to prevent inaccurate attribution.
194+
bumpversion --no-tag patch
195+
196+
git push origin master --tags

0 commit comments

Comments
 (0)