Skip to content

Commit 794dac5

Browse files
authored
Bump version to 1.0.0 (#1718)
1 parent ca5bc9c commit 794dac5

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

CHANGELOG.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

3-
## [Unreleased]
3+
## [1.0.0] - 2019-12-12
44

55
### Added
66

@@ -756,7 +756,8 @@ Initial release
756756

757757

758758

759-
[Unreleased]: https://github.com/python-poetry/poetry/compare/0.12.17...master
759+
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.0.0...master
760+
[1.0.0]: https://github.com/python-poetry/poetry/releases/tag/1.0.0
760761
[0.12.17]: https://github.com/python-poetry/poetry/releases/tag/0.12.17
761762
[0.12.16]: https://github.com/python-poetry/poetry/releases/tag/0.12.16
762763
[0.12.15]: https://github.com/python-poetry/poetry/releases/tag/0.12.15

poetry/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.0b9"
1+
__version__ = "1.0.0"

poetry/repositories/pypi_repository.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848

4949
class PyPiRepository(Repository):
5050

51-
CACHE_VERSION = parse_constraint("1.0.0b2")
51+
CACHE_VERSION = parse_constraint("1.0.0")
5252

5353
def __init__(self, url="https://pypi.org/", disable_cache=False, fallback=True):
5454
self._url = url

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "poetry"
3-
version = "1.0.0b9"
3+
version = "1.0.0"
44
description = "Python dependency management and packaging made easy."
55
authors = [
66
"Sébastien Eustace <[email protected]>"

0 commit comments

Comments
 (0)