Skip to content

Commit c17a39c

Browse files
committed
Bump version to 1.2.0a1
1 parent 42b6702 commit c17a39c

File tree

3 files changed

+33
-3
lines changed

3 files changed

+33
-3
lines changed

Diff for: CHANGELOG.md

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

3+
## [1.2.0a1] - 2021-04-23
4+
5+
This release is the first testing release of the upcoming 1.2.0 version.
6+
7+
It **drops** support for Python 2.7 and 3.5.
8+
9+
### Added
10+
11+
- Poetry now supports a plugin system to alter or expand Poetry's functionality. ([#3733](https://github.com/python-poetry/poetry/pull/3733))
12+
- Poetry now supports [PEP 610](https://www.python.org/dev/peps/pep-0610/). ([#3876](https://github.com/python-poetry/poetry/pull/3876))
13+
- Several configuration options to better control the way virtual environments are created are now available. ([#3157](https://github.com/python-poetry/poetry/pull/3157), [#3711](https://github.com/python-poetry/poetry/pull/3711)).
14+
- The `new` command now supports namespace packages. ([#2768](https://github.com/python-poetry/poetry/pull/2768))
15+
- The `add` command now supports the `--editable` option to add packages in editable mode. ([#3940](https://github.com/python-poetry/poetry/pull/3940))
16+
17+
### Changed
18+
19+
- Python 2.7 and 3.5 are no longer supported. ([#3405](https://github.com/python-poetry/poetry/pull/3405))
20+
- The usage of the `get-poetry.py` script is now deprecated and is replaced by the `install-poetry.py` script. ([#3706](https://github.com/python-poetry/poetry/pull/3706))
21+
- Directory dependencies are now in non-develop mode by default. ([poetry-core#98](https://github.com/python-poetry/poetry-core/pull/98))
22+
- Improved support for PEP 440 specific versions that do not abide by semantic versioning. ([poetry-core#140](https://github.com/python-poetry/poetry-core/pull/140))
23+
- Improved the CLI experience and performance by migrating to the latest version of Cleo. ([#3618](https://github.com/python-poetry/poetry/pull/3618))
24+
- Packages previously considered as unsafe (`pip`, `setuptools`, `wheels` and `distribute`) can now be managed as any other package. ([#2826](https://github.com/python-poetry/poetry/pull/2826))
25+
- The `new` command now defaults to the Markdown format for README files. ([#2768](https://github.com/python-poetry/poetry/pull/2768))
26+
27+
### Fixed
28+
29+
- Fixed an error where command line options were not taken into account when using the `run` command. ([#3618](https://github.com/python-poetry/poetry/pull/3618))
30+
31+
332
## [1.1.5] - 2021-03-04
433

534
### Fixed
@@ -1093,7 +1122,8 @@ Initial release
10931122

10941123

10951124

1096-
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.4...master
1125+
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.2.0a1...master
1126+
[1.2.0a1]: https://github.com/python-poetry/poetry/compare/1.2.0a1
10971127
[1.1.4]: https://github.com/python-poetry/poetry/compare/1.1.4
10981128
[1.1.3]: https://github.com/python-poetry/poetry/compare/1.1.3
10991129
[1.1.2]: https://github.com/python-poetry/poetry/releases/tag/1.1.2

Diff for: poetry/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.2.0a0"
1+
__version__ = "1.2.0a1"

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

0 commit comments

Comments
 (0)