Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.9.0 release #374

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
==================

Expand Down
5 changes: 3 additions & 2 deletions docs/releasing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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-<version>*``. 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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=[
Expand Down