Skip to content

Commit c40fe28

Browse files
committed
bump to version 1.2.0b1
1 parent b06658f commit c40fe28

File tree

4 files changed

+54
-4
lines changed

4 files changed

+54
-4
lines changed

CHANGELOG.md

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

3+
## [1.2.0b1] - 2022-03-09
4+
5+
### Fixed
6+
7+
- Fixed an issue where the system environment couldn't be detected ([#4406](https://github.com/python-poetry/poetry/pull/4406)).
8+
- Fixed another issue where the system environment couldn't be detected ([#4433](https://github.com/python-poetry/poetry/pull/4433)).
9+
- Replace deprecated requests parameter in uploader ([#4580](https://github.com/python-poetry/poetry/pull/4580)).
10+
- Fix an issue where venv are detected as broken when using MSys2 on windows ([#4482](https://github.com/python-poetry/poetry/pull/4482)).
11+
- Fixed an issue where the cache breaks on windows ([#4531](https://github.com/python-poetry/poetry/pull/4531)).
12+
- Fixed an issue where a whitespace before a semicolon was missing on `poetry export` ([#4575](https://github.com/python-poetry/poetry/issues/4575)).
13+
- Fixed an issue where markers were not correctly assigned to nested dependencies ([#3511](https://github.com/python-poetry/poetry/issues/3511)).
14+
- Recognize one digit version in wheel filenames ([#3338](https://github.com/python-poetry/poetry/pull/3338)).
15+
- Fixed an issue when `locale` is unset ([#4038](https://github.com/python-poetry/poetry/pull/4038)).
16+
- Fixed an issue where the fallback to another interpreter didn't work ([#3475](https://github.com/python-poetry/poetry/pull/3475)).
17+
- Merge any marker constraints into constraints with specific markers ([#4590](https://github.com/python-poetry/poetry/pull/4590)).
18+
- Normalize path before hashing so that the generated venv name is independent of case on Windows ([#4813](https://github.com/python-poetry/poetry/pull/4813)).
19+
- Fixed an issue where a dependency wasn't upgrade by using `@latest` on `poetry update` ([#4945](https://github.com/python-poetry/poetry/pull/4945)).
20+
- Fixed an issue where conda envs in windows are always reported as broken([#5007](https://github.com/python-poetry/poetry/pull/5007)).
21+
- Fixed an issue where Poetry doesn't find its own venv on `poetry self update` ([#5049](https://github.com/python-poetry/poetry/pull/5049)).
22+
- Fix misuse of pretty_constraint ([#4932](https://github.com/python-poetry/poetry/pull/4932)).
23+
- Fixed an issue where the reported python version used for venv creation wasn't correct ([#5086](https://github.com/python-poetry/poetry/pull/5086)).
24+
- Fixed an issue where the searched package wasn't display in the interactive dialog of `poetry init` ([#5076](https://github.com/python-poetry/poetry/pull/5076)).
25+
- Fixed an issue where Poetry raises an excepetion on `poetry show` when no lock files exists ([#5242](https://github.com/python-poetry/poetry/pull/5242)).
26+
- Fixed an issue where Poetry crashes when optional `vcs_info.requested_version` in `direct_url.json` wasn't included ([#5274](https://github.com/python-poetry/poetry/pull/5274)).
27+
- Fixed an issue where dependencies with extras were updated despite using `--no-update` ([#4618](https://github.com/python-poetry/poetry/pull/4618)).
28+
29+
### Added
30+
31+
- `poetry show <package>` now also shows which packages depend on it ([#2351](https://github.com/python-poetry/poetry/pull/2351)).
32+
- Print error message when `poetry publish` fails ([#3549](https://github.com/python-poetry/poetry/pull/3549)).
33+
- Added in info output to `poetry lock --check` ([#5081](https://github.com/python-poetry/poetry/pull/5081)).
34+
- New argument `--all` for `poetry env remove` to delete all venv of a project at once ([#3212](https://github.com/python-poetry/poetry/pull/3212)).
35+
- New argument `--without-urls` for `poetry export` to exclude source repository urls from the exported file ([#4763](https://github.com/python-poetry/poetry/pull/4763)).
36+
- Added a `new installer.max-workers` property to the configuration ([#3516](https://github.com/python-poetry/poetry/pull/3516)).
37+
- Added experimental option `virtualenvs.prefer-active-python` to detect current activated python ([#4852](https://github.com/python-poetry/poetry/pull/4852)).
38+
- Added better windows shell support ([#5053](https://github.com/python-poetry/poetry/pull/5053)).
39+
40+
### Changed
41+
42+
- Drop python3.6 support ([#5055](https://github.com/python-poetry/poetry/pull/5055)).
43+
- Send error message from export command to stderr ([#4110](https://github.com/python-poetry/poetry/pull/4110)).
44+
- Write several messages to stderr instead of stdout ([#5179](https://github.com/python-poetry/poetry/pull/5179)).
45+
- Exit with callable return code in generated script ([#4456](https://github.com/python-poetry/poetry/pull/4456)).
46+
- Replace deprecated `pep517.build` by `build` ([#5155](https://github.com/python-poetry/poetry/pull/5155)).
47+
- Check if the python executable version in the environment is still valid ([#4520](https://github.com/python-poetry/poetry/pull/4520)).
48+
49+
350
## [1.1.13] - 2022-02-09
451

552
### Fixed
@@ -1217,7 +1264,8 @@ Initial release
12171264

12181265

12191266

1220-
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.2.0a2...master
1267+
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.2.0b1...master
1268+
[1.2.0b1]: https://github.com/python-poetry/poetry/compare/1.2.0b1
12211269
[1.2.0a2]: https://github.com/python-poetry/poetry/compare/1.2.0a2
12221270
[1.2.0a1]: https://github.com/python-poetry/poetry/compare/1.2.0a1
12231271
[1.1.13]: https://github.com/python-poetry/poetry/releases/tag/1.1.13

poetry.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

src/poetry/__version__.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
from __future__ import annotations
22

3+
from poetry.utils._compat import metadata
34

4-
__version__ = "1.2.0a2"
5+
6+
__version__ = metadata.version("poetry")

0 commit comments

Comments
 (0)