Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: bump version to 1.8.0 #656

Merged
merged 1 commit into from
Oct 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 29 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,33 @@
# Change Log


## [1.8.0] - 2023-10-31

### Added

- Add `3.12` to the list of available Python versions ([#631](https://github.com/python-poetry/poetry-core/pull/631)).
- Add support for creating packages dynamically in the build script ([#629](https://github.com/python-poetry/poetry-core/pull/629)).

### Changed

- Improve marker logic for `extra` markers ([#636](https://github.com/python-poetry/poetry-core/pull/636)).
- Update list of supported licenses ([#635](https://github.com/python-poetry/poetry-core/pull/635),
[#646](https://github.com/python-poetry/poetry-core/pull/646)).
- Deprecate `Dependency.transitive_python_versions` ([#648](https://github.com/python-poetry/poetry-core/pull/648)).
- Deprecate `Dependency.transitive_python_constraint` ([#649](https://github.com/python-poetry/poetry-core/pull/649)).

### Fixed

- Fix an issue where projects with extension modules were not installed in editable mode ([#633](https://github.com/python-poetry/poetry-core/pull/633)).
- Fix an issue where the wrong or no `lib` folder was added to the wheel ([#634](https://github.com/python-poetry/poetry-core/pull/634)).

### Vendoring

- Replace [`jsonschema`](https://github.com/python-jsonschema/jsonschema) with [`fastjsonschema`](https://github.com/horejsek/python-fastjsonschema).
- [`lark==1.1.8`](https://github.com/lark-parser/lark/releases/tag/1.1.8)
- [`packaging==23.2`](https://github.com/pypa/packaging/blob/main/CHANGELOG.rst)


## [1.7.0] - 2023-08-20

### Added
Expand Down Expand Up @@ -567,7 +594,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.7.0...main
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.8.0...main
[1.8.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.8.0
[1.7.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.7.0
[1.6.1]: https://github.com/python-poetry/poetry-core/releases/tag/1.6.1
[1.6.0]: https://github.com/python-poetry/poetry-core/releases/tag/1.6.0
Expand Down
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "poetry-core"
version = "1.7.0"
version = "1.8.0"
description = "Poetry PEP 517 Build Backend"
authors = ["Sébastien Eustace <sebastien@eustace.io>"]
license = "MIT"
Expand All @@ -10,7 +10,9 @@ repository = "https://github.com/python-poetry/poetry-core"
keywords = ["packaging", "dependency", "poetry"]
classifiers = [
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules"
"Topic :: Software Development :: Libraries :: Python Modules",
# Classifiers for Python 3.12 can be removed after Poetry 1.7.0 has been released.
"Programming Language :: Python :: 3.12",
]
packages = [
{ include = "poetry", from = "src" },
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.7.0"
__version__ = "1.8.0"

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

Expand Down