Skip to content

Commit 988ee85

Browse files
committed
Bump version to 1.1.5
1 parent 7f61fc9 commit 988ee85

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

CHANGELOG.md

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

3+
## [1.1.5] - 2021-03-03
4+
5+
### Fixed
6+
7+
- Fixed an error in the `export` command when no lock file existed and a verbose flag was passed to the command. ([#3310](https://github.com/python-poetry/poetry/pull/3310))
8+
- Fixed an error where the `pyproject.toml` was not reverted when using the `add` command. ([#3622](https://github.com/python-poetry/poetry/pull/3622))
9+
- Fixed errors when using non-HTTPS indices. ([#3622](https://github.com/python-poetry/poetry/pull/3622))
10+
- Fixed errors when handling simple indices redirection. ([#3622](https://github.com/python-poetry/poetry/pull/3622))
11+
- Fixed errors when trying to handle newer wheels by using the latest version of `poetry-core` and `packaging`. ([#3677](https://github.com/python-poetry/poetry/pull/3677))
12+
- Fixed an error when using some versions of `poetry-core` due to an incorrect import . ([#3696](https://github.com/python-poetry/poetry/pull/3696))
13+
14+
315
## [1.1.4] - 2020-10-23
416

517
### Added
@@ -1083,8 +1095,9 @@ Initial release
10831095

10841096

10851097

1086-
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.4...master
1087-
[1.1.3]: https://github.com/python-poetry/poetry/compare/1.1.4
1098+
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.5...master
1099+
[1.1.5]: https://github.com/python-poetry/poetry/compare/1.1.5
1100+
[1.1.4]: https://github.com/python-poetry/poetry/compare/1.1.4
10881101
[1.1.3]: https://github.com/python-poetry/poetry/compare/1.1.3
10891102
[1.1.2]: https://github.com/python-poetry/poetry/releases/tag/1.1.2
10901103
[1.1.1]: https://github.com/python-poetry/poetry/releases/tag/1.1.1

poetry/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.1.4"
1+
__version__ = "1.1.5"

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

0 commit comments

Comments
 (0)