diff --git a/docs/changelog.rst b/docs/changelog.rst index c88c324e..2b83c096 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,21 @@ Doctr Changelog ================= +1.9.0 (2021-04-08) +================== + +Major Changes +------------- + +- Fixes ``doctr configure``. GitHub authentication now uses the device + authentication flow, as the username/password flow is no longer supported. + (:issue:`373`) + +Minor Changes +------------- + +- Increase the number of retries for pushing from 3 to 5. (:issue:`340`) + 1.8.0 (2019-02-01) ================== diff --git a/docs/releasing.rst b/docs/releasing.rst index 6e39faf0..2d18e0ee 100644 --- a/docs/releasing.rst +++ b/docs/releasing.rst @@ -14,8 +14,9 @@ Here is how to do a release: like ``git tag 2.0 -a``. Include the ``-a`` flag. This will ask for some commit message for the tag (you can just use something like "Doctr 2.0 release", or you can put the changelog in there if you want). -- Do ``python setup.py sdist bdist_wheel upload``. It uses the tag to get the version number, so - you need to do this after you tag. +- Do ``python setup.py sdist bdist_wheel``, then ``twine upload + dist/doctr-*``. It uses the tag to get the version number, so you + need to do this after you tag. - Push up the tag (``git push origin 2.0``). - Merge the pull request. - Create a pull request to the `conda-forge feedstock diff --git a/setup.py b/setup.py index 5d7ae1ec..9eb6c37c 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ url='https://github.com/drdoctr/doctr', packages=['doctr', 'doctr.tests'], description='Deploy docs from Travis to GitHub pages.', - long_description=open("README.rst").read(), + # long_description=open("README.rst").read(), entry_points={'console_scripts': [ 'doctr = doctr.__main__:main']}, python_requires= '>=3.5', install_requires=[