Skip to content

Commit 549f865

Browse files
committed
Bump version to 1.1.0a2
1 parent 21867a1 commit 549f865

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

CHANGELOG.md

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

3+
## [1.1.0a2] - 2020-06-26
4+
5+
Note that lock files generated with this release are not compatible with previous releases of Poetry.
6+
7+
### Added
8+
9+
- The `install` command now supports a `--remove-untracked` option to ensure only packages from the lock file are present in the environment ([#2172](https://github.com/python-poetry/poetry/pull/2172)).
10+
- Some errors will now be provided with possible solutions and links to the documentation ([#2396](https://github.com/python-poetry/poetry/pull/2396)).
11+
12+
### Changed
13+
14+
- Editable installations of Poetry projects have been improved and are now faster ([#2360](https://github.com/python-poetry/poetry/pull/2360)).
15+
- Improved the accuracy of the dependency resolver in case of dependencies with environment markers ([#2361](https://github.com/python-poetry/poetry/pull/2361))
16+
- Environment markers of dependencies are no longer stored in the lock file ([#2361](https://github.com/python-poetry/poetry/pull/2361)).
17+
- Improved the way connection errors are handled when publishing ([#2285](https://github.com/python-poetry/poetry/pull/2285)).
18+
19+
### Fixed
20+
21+
- Fixed errors when handling duplicate dependencies with environment markers ([#2342](https://github.com/python-poetry/poetry/pull/2342)).
22+
- Fixed the detection of installed packages ([#2360](https://github.com/python-poetry/poetry/pull/2360)).
23+
24+
325
## [1.1.0a1] - 2020-03-27
426

527
This release **must** be downloaded via the `get-poetry.py` script and not via the `self update` command.
@@ -882,7 +904,8 @@ Initial release
882904

883905

884906

885-
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.0a1...develop
907+
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.0a2...develop
908+
[1.1.0a2]: https://github.com/python-poetry/poetry/releases/tag/1.1.0a2
886909
[1.1.0a1]: https://github.com/python-poetry/poetry/releases/tag/1.1.0a1
887910
[1.0.9]: https://github.com/python-poetry/poetry/releases/tag/1.0.9
888911
[1.0.8]: https://github.com/python-poetry/poetry/releases/tag/1.0.8

poetry/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.1.0a1"
1+
__version__ = "1.1.0a2"

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

0 commit comments

Comments
 (0)