Skip to content

Commit 288c421

Browse files
committed
Bump version to 1.0.6
1 parent 5384da7 commit 288c421

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

CHANGELOG.md

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

3+
## [1.0.6] - 2020-06-05
4+
5+
### Changed
6+
7+
- The `self update` command has been updated in order to handle future releases of Poetry ([#2429](https://github.com/python-poetry/poetry/pull/2429)).
8+
9+
### Fixed
10+
11+
- Fixed an error were a new line was not written when displaying the virtual environment's path with `env info` ([#2196](https://github.com/python-poetry/poetry/pull/2196)).
12+
- Fixed a misleading error message when the `packages` property was empty ([#2265](https://github.com/python-poetry/poetry/pull/2265)).
13+
- Fixed shell detection by using environment variables ([#2147](https://github.com/python-poetry/poetry/pull/2147)).
14+
- Fixed the removal of VCS dependencies ([#2239](https://github.com/python-poetry/poetry/pull/2239)).
15+
- Fixed generated wheel ABI tags for Python 3.8 ([#2121](https://github.com/python-poetry/poetry/pull/2121)).
16+
- Fixed a regression when building stub-only packages ([#2000](https://github.com/python-poetry/poetry/pull/2000)).
17+
- Fixed errors when parsing PEP-440 constraints with whitespace ([#2347](https://github.com/python-poetry/poetry/pull/2347)).
18+
- Fixed PEP 508 representation of VCS dependencies ([#2349](https://github.com/python-poetry/poetry/pull/2349)).
19+
- Fixed errors when source distributions were read-only ([#1140](https://github.com/python-poetry/poetry/pull/1140)).
20+
- Fixed dependency resolution errors and inconsistencies with directory, file and VCS dependencies ([#2398](https://github.com/python-poetry/poetry/pull/2398)).
21+
- Fixed custom repositories information not being properly locked ([#2484](https://github.com/python-poetry/poetry/pull/2484)).
22+
23+
324
## [1.0.5] - 2020-02-29
425

526
### Fixed
@@ -824,7 +845,8 @@ Initial release
824845

825846

826847

827-
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.0.5...master
848+
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.0.6...master
849+
[1.0.6]: https://github.com/python-poetry/poetry/releases/tag/1.0.6
828850
[1.0.5]: https://github.com/python-poetry/poetry/releases/tag/1.0.5
829851
[1.0.4]: https://github.com/python-poetry/poetry/releases/tag/1.0.4
830852
[1.0.3]: https://github.com/python-poetry/poetry/releases/tag/1.0.3

poetry/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.5"
1+
__version__ = "1.0.6"

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

0 commit comments

Comments
 (0)