Skip to content

Commit 719947f

Browse files
committed
Bump version to 1.0.4
1 parent 8ffddfb commit 719947f

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

CHANGELOG.md

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

3+
## [1.0.4] - 2020-02-28
4+
5+
### Fixed
6+
7+
- Fixed the PyPI URL used when installing packages ([#2099](https://github.com/python-poetry/poetry/pull/2099)).
8+
- Fixed errors when the author's name contains special characters ([#2006](https://github.com/python-poetry/poetry/pull/2006)).
9+
- Fixed VCS excluded files detection when building wheels ([#1947](https://github.com/python-poetry/poetry/pull/1947)).
10+
- Fixed packages detection when building sdists ([#1626](https://github.com/python-poetry/poetry/pull/1626)).
11+
- Fixed the local `.venv` virtual environment not being displayed in `env list` ([#1762](https://github.com/python-poetry/poetry/pull/1762)).
12+
- Fixed incompatibilities with the most recent versions of `virtualenv` ([#2096](https://github.com/python-poetry/poetry/pull/2096)).
13+
- Fixed Poetry's own vendor dependencies being retrieved when updating dependencies ([#1981](https://github.com/python-poetry/poetry/pull/1981)).
14+
- Fixed encoding of credentials in URLs ([#1911](https://github.com/python-poetry/poetry/pull/1911)).
15+
- Fixed url constraints not being accepted in multi-constraints dependencies ([#2035](https://github.com/python-poetry/poetry/pull/2035)).
16+
- Fixed an error where credentials specified via environment variables were not retrieved ([#2061](https://github.com/python-poetry/poetry/pull/2061)).
17+
- Fixed an error where git dependencies referencing tags were not locked to the corresponding commit ([#1948](https://github.com/python-poetry/poetry/pull/1948)).
18+
- Fixed an error when parsing packages `setup.py` files ([#2041](https://github.com/python-poetry/poetry/pull/2041)).
19+
- Fixed an error when parsing some git URLs ([#2018](https://github.com/python-poetry/poetry/pull/2018)).
20+
21+
22+
323
## [1.0.3] - 2020-01-31
424

525
### Fixed
@@ -796,7 +816,8 @@ Initial release
796816

797817

798818

799-
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.0.3...master
819+
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.0.4...master
820+
[1.0.4]: https://github.com/python-poetry/poetry/releases/tag/1.0.4
800821
[1.0.3]: https://github.com/python-poetry/poetry/releases/tag/1.0.3
801822
[1.0.2]: https://github.com/python-poetry/poetry/releases/tag/1.0.2
802823
[1.0.1]: https://github.com/python-poetry/poetry/releases/tag/1.0.1

poetry/__version__.py

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

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

0 commit comments

Comments
 (0)