Skip to content

Commit

Permalink
Merge pull request #306 from brainwane/new-release
Browse files Browse the repository at this point in the history
Update changelog and bump version for new release
  • Loading branch information
brainwane committed Mar 2, 2018
2 parents 88341f7 + 3b29633 commit 2bac420
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@
releases_issue_uri = "https://github.com/pypa/twine/issues/%s"
releases_release_uri = "https://github.com/pypa/twine/tree/%s"

releases_debug = False # Change to True to see debug output

# Add any paths that contain templates here, relative to this directory.
templates_path = ["_templates"]

Expand All @@ -57,7 +59,7 @@

# General information about the project.
project = "twine"
copyright = "2013, Donald Stufft and individual contributors"
copyright = "2018, Donald Stufft and individual contributors"

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2013 Donald Stufft
# Copyright 2018 Donald Stufft and individual contributors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down
10 changes: 5 additions & 5 deletions twine/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2013 Donald Stufft
# Copyright 2018 Donald Stufft and individual contributors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -19,13 +19,13 @@
)

__title__ = "twine"
__summary__ = "Collection of utilities for interacting with PyPI"
__uri__ = "https://github.com/pypa/twine"
__summary__ = "Collection of utilities for publishing packages on PyPI"
__uri__ = "http://twine.readthedocs.io/"

__version__ = "1.9.1"
__version__ = "1.10.0rc1"

__author__ = "Donald Stufft and individual contributors"
__email__ = "donald@stufft.io"

__license__ = "Apache License, Version 2.0"
__copyright__ = "Copyright 2013 Donald Stufft"
__copyright__ = "Copyright 2018 Donald Stufft and individual contributors"

0 comments on commit 2bac420

Please sign in to comment.