nficano commited on
Commit
538a751
·
2 Parent(s): 0e36a98 34482ab

Merge branch 'master' of github.com:nficano/pytube

Browse files

* 'master' of github.com:nficano/pytube:
copy-pasta
Update README.rst

Files changed (1) hide show
  1. 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 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.
 
191
 
192
  How to release updates
193
  ----------------------
@@ -198,10 +199,16 @@ Once complete, execute the following commands:
198
 
199
  .. code:: bash
200
 
201
- $ git checkout master
202
- $ bumpversion [major|minor|patch]
203
- $
204
- $ python setup.py sdist bdist_wheel upload
205
- $
206
- $ bumpversion --no-tag patch
207
- $ git push origin master --tags
 
 
 
 
 
 
 
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