Skip to content

Commit ed44342

Browse files
authored
Bump version to 1.0.3 (#1966)
1 parent 7974d0f commit ed44342

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

CHANGELOG.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Change Log
22

3+
## [1.0.3] - 2020-01-31
4+
5+
### Fixed
6+
7+
- Fixed an error which caused the configuration environment variables (like `POETRY_HTTP_BASIC_XXX_PASSWORD`) to not be used ([#1909](https://github.com/python-poetry/poetry/pull/1909)).
8+
- Fixed an error where the `--help` option was not working ([#1910](https://github.com/python-poetry/poetry/pull/1910)).
9+
- Fixed an error where packages from private indices were not decompressed properly ([#1851](https://github.com/python-poetry/poetry/pull/1851)).
10+
- Fixed an error where the version of some PEP-508-formatted wheel dependencies was not properly retrieved ([#1932](https://github.com/python-poetry/poetry/pull/1932)).
11+
- Fixed internal regexps to avoid potential catastrophic backtracking errors ([#1913](https://github.com/python-poetry/poetry/pull/1913)).
12+
- Fixed performance issues when custom indices were defined in the `pyproject.toml` file ([#1892](https://github.com/python-poetry/poetry/pull/1892)).
13+
- Fixed the `get_requires_for_build_wheel()` function of `masonry.api` which wasn't returning the proper result ([#1875](https://github.com/python-poetry/poetry/pull/1875)).
14+
15+
316
## [1.0.2] - 2020-01-10
417

518
### Fixed
@@ -783,7 +796,8 @@ Initial release
783796

784797

785798

786-
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.0.2...master
799+
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.0.3...master
800+
[1.0.3]: https://github.com/python-poetry/poetry/releases/tag/1.0.3
787801
[1.0.2]: https://github.com/python-poetry/poetry/releases/tag/1.0.2
788802
[1.0.1]: https://github.com/python-poetry/poetry/releases/tag/1.0.1
789803
[1.0.0]: https://github.com/python-poetry/poetry/releases/tag/1.0.0

poetry/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.2"
1+
__version__ = "1.0.3"

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.2"
3+
version = "1.0.3"
44
description = "Python dependency management and packaging made easy."
55
authors = [
66
"Sébastien Eustace <[email protected]>"

0 commit comments

Comments
 (0)