Skip to content

Commit 1688095

Browse files
committed
bump to version 1.2.0b1
1 parent ae4f981 commit 1688095

File tree

4 files changed

+59
-8
lines changed

4 files changed

+59
-8
lines changed

CHANGELOG.md

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

3+
## [1.2.0b1] - 2022-03-06
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+
28+
### Added
29+
30+
- `poetry show <package>` now also shows which packages depend on it ([#2351](https://github.com/python-poetry/poetry/pull/2351)).
31+
- Print error message when `poetry publish` fails ([#3549](https://github.com/python-poetry/poetry/pull/3549)).
32+
- Added in info output to `poetry lock --check` ([#5081](https://github.com/python-poetry/poetry/pull/5081)).
33+
- 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)).
34+
- 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)).
35+
- Added a `new installer.max-workers` property to the configuration ([#3516](https://github.com/python-poetry/poetry/pull/3516)).
36+
- Added experimental option `virtualenvs.prefer-active-python` to detect current activated python ([#4852](https://github.com/python-poetry/poetry/pull/4852)).
37+
- Added better windows shell support ([#5053](https://github.com/python-poetry/poetry/pull/5053)).
38+
39+
### Changed
40+
41+
- Drop python3.6 support ([#5055](https://github.com/python-poetry/poetry/pull/5055)).
42+
- Send error message from export command to stderr ([#4110](https://github.com/python-poetry/poetry/pull/4110)).
43+
- Write several messages to stderr instead of stdout ([#5179](https://github.com/python-poetry/poetry/pull/5179)).
44+
- Exit with callable return code in generated script ([#4456](https://github.com/python-poetry/poetry/pull/4456)).
45+
- Replace deprecated `pep517.build` by `build` ([#5155](https://github.com/python-poetry/poetry/pull/5155)).
46+
- Check if the python executable version in the environment is still valid ([#4520](https://github.com/python-poetry/poetry/pull/4520)).
47+
48+
349
## [1.1.13] - 2022-02-09
450

551
### Fixed

poetry.lock

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

pyproject.toml

+2-2
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]>"
@@ -34,7 +34,7 @@ generate-setup-file = false
3434
[tool.poetry.dependencies]
3535
python = "^3.7"
3636

37-
poetry-core = "^1.1.0a6"
37+
poetry-core = "^1.1.0a7"
3838
cachecontrol = { version = "^0.12.9", extras = ["filecache"] }
3939
cachy = "^0.3.0"
4040
cleo = "^1.0.0a4"

src/poetry/__version__.py

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

33

4-
__version__ = "1.2.0a2"
4+
try:
5+
from importlib import metadata as importlib_metadata
6+
except ImportError:
7+
import importlib_metadata # type: ignore[no-redef]
8+
9+
__version__ = importlib_metadata.version("poetry")

0 commit comments

Comments
 (0)