Skip to content

Commit

Permalink
release: bump to version 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
radoering committed Sep 13, 2022
1 parent 50f5fd3 commit 9cc23df
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
23 changes: 22 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,35 @@
# Change Log

## [1.2.0] - 2022-09-13

### Added

- Added support for subdirectories in `url` dependencies ([#398](https://github.com/python-poetry/poetry-core/pull/398)).

### Changed
- When setting an invalid version constraint an error is raised instead of silently setting "any version" ([#461](https://github.com/python-poetry/poetry-core/pull/461)).
- Allow `:` in author name ([#411](https://github.com/python-poetry/poetry-core/pull/411)).

### Fixed

- Fixed an issue where incorrect `Requires-Dist` information was generated when environment markers where used for optional packages ([#462](https://github.com/python-poetry/poetry-core/pull/462)).
- Fixed an issue where incorrect python constraints where parsed from environment markers ([#457](https://github.com/python-poetry/poetry-core/pull/457)).
- Fixed hashing of markers and constraints ([#466](https://github.com/python-poetry/poetry-core/pull/466)).
- Fixed an issue where PEP508 name of directory dependencies where platform dependent ([#463](https://github.com/python-poetry/poetry-core/pull/463)).


## [1.1.0] - 2022-08-31

- No functional changes.


## [1.1.0rc3] - 2022-08-26

### Fixed

- Fixed an issue where a malformed URL was passed to pip when installing from a git subdirectory ([#451](https://github.com/python-poetry/poetry-core/pull/451)).


## [1.1.0rc2] - 2022-08-26

### Changed
Expand Down Expand Up @@ -365,7 +385,8 @@ No changes.
- Fixed support for stub-only packages ([#28](https://github.com/python-poetry/core/pull/28)).


[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.1.0...main
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.2.0...main
[1.2.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.2.0
[1.1.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0
[1.1.0rc3]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0rc3
[1.1.0rc2]: https://github.com/python-poetry/poetry-core/releases/tag/1.1.0rc2
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "poetry-core"
version = "1.1.0"
version = "1.2.0"
description = "Poetry PEP 517 Build Backend"
authors = ["Sébastien Eustace <[email protected]>"]

Expand Down
2 changes: 1 addition & 1 deletion src/poetry/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# this cannot presently be replaced with importlib.metadata.version as when building
# itself, poetry-core is not available as an installed distribution.
__version__ = "1.1.0"
__version__ = "1.2.0"

__vendor_site__ = (Path(__file__).parent / "_vendor").as_posix()

Expand Down

0 comments on commit 9cc23df

Please sign in to comment.