Skip to content

Commit

Permalink
Merge pull request #52 from python-poetry/release-1.0.0a9
Browse files Browse the repository at this point in the history
Release 1.0.0a9
  • Loading branch information
sdispater authored Jul 24, 2020
2 parents dbb3809 + 09650f3 commit 2409e6d
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Change Log

## [1.0.0a9] - 2020-07-24

### Added

- Added support for build scripts without `setup.py` generation ([#45](https://github.com/python-poetry/core/pull/45)).

### Changed

- Improved the parsing of requirements and environment markers ([#44](https://github.com/python-poetry/core/pull/44)).

### Fixed

- Fixed the default value used for the `build.generate-setup-file` settings ([#43](https://github.com/python-poetry/core/pull/43)).
- Fixed error messages when the authors specified in the pyproject.toml file are invalid ([#49](https://github.com/python-poetry/core/pull/49)).
- Fixed distributions build when using the PEP-517 backend for packages with includes ([#47](https://github.com/python-poetry/core/pull/47)).


## [1.0.0a8] - 2020-06-26

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


[Unreleased]: https://github.com/python-poetry/poetry/compare/1.0.0a8...master
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.0.0a9...master
[1.0.0a9]: https://github.com/python-poetry/poetry/releases/tag/1.0.0a9
[1.0.0a8]: https://github.com/python-poetry/poetry/releases/tag/1.0.0a8
[1.0.0a7]: https://github.com/python-poetry/poetry/releases/tag/1.0.0a7
[1.0.0a6]: https://github.com/python-poetry/poetry/releases/tag/1.0.0a6
2 changes: 1 addition & 1 deletion poetry/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# noinspection PyUnresolvedReferences
from pathlib2 import Path

__version__ = "1.0.0a8"
__version__ = "1.0.0a9"

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

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.0.0a8"
version = "1.0.0a9"
description = "Core utilities for Poetry"
authors = ["Sébastien Eustace <[email protected]>"]

Expand Down

0 comments on commit 2409e6d

Please sign in to comment.