Merge branch 'master' of github.com:nficano/pytube
Browse files* 'master' of github.com:nficano/pytube:
copy-pasta
Update README.rst
- README.rst +15 -8
README.rst
CHANGED
@@ -187,7 +187,8 @@ and/or optionally choose the filename (``-f`` or ``--filename=``):
|
|
187 |
Development
|
188 |
===========
|
189 |
|
190 |
-
Development of
|
|
|
191 |
|
192 |
How to release updates
|
193 |
----------------------
|
@@ -198,10 +199,16 @@ Once complete, execute the following commands:
|
|
198 |
|
199 |
.. code:: bash
|
200 |
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
Development
|
188 |
===========
|
189 |
|
190 |
+
Development of "pytube" 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.
|
191 |
+
|
192 |
|
193 |
How to release updates
|
194 |
----------------------
|
|
|
199 |
|
200 |
.. code:: bash
|
201 |
|
202 |
+
git checkout master
|
203 |
+
|
204 |
+
# Increment the version number and tag the release.
|
205 |
+
bumpversion [major|minor|patch]
|
206 |
+
|
207 |
+
# Upload the distribution to PyPi
|
208 |
+
python setup.py sdist bdist_wheel upload
|
209 |
+
|
210 |
+
# Since master often contains work-in-progress changes, increment the version
|
211 |
+
# to a patch release to prevent inaccurate attribution.
|
212 |
+
bumpversion --no-tag patch
|
213 |
+
|
214 |
+
git push origin master --tags
|