Skip to content

Commit

Permalink
Merge pull request #29 from python-poetry/release-1.0.0a6
Browse files Browse the repository at this point in the history
Release 1.0.0a6
  • Loading branch information
sdispater authored Apr 24, 2020
2 parents 127a32c + 2d6c55e commit 8f36036
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 2 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Change Log

## [1.0.0a6] - 2020-04-24


### Added

- Added support for markers inverse ([#21](https://github.com/python-poetry/core/pull/21)).
- Added support for specifying that `git` dependencies should be installed in develop mode ([#23](https://github.com/python-poetry/core/pull/23)).
- Added the ability to specify build settings from the Poetry main configuration file ([#26](https://github.com/python-poetry/core/pull/26)).
- Added the ability to disable the generation of the `setup.py` file when building ([#26](https://github.com/python-poetry/core/pull/26)).

### Changed

- Relaxed licence restrictions to support custom licences ([#5](https://github.com/python-poetry/core/pull/5)).
- Improved support for PEP-440 direct references ([#22](https://github.com/python-poetry/core/pull/22)).
- Improved dependency vendoring ([#25](https://github.com/python-poetry/core/pull/25)).

### Fixed

- Fixed the inability to make the url dependencies optional ([#13](https://github.com/python-poetry/core/pull/13)).
- Fixed whitespaces in PEP-440 constraints causing an error ([#16](https://github.com/python-poetry/core/pull/16)).
- Fixed subpackage check when generating the `setup.py` file ([#17](https://github.com/python-poetry/core/pull/17)).
- Fix PEP-517 issues for projects using build scripts ([#12](https://github.com/python-poetry/core/pull/12)).
- 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.0a6...master
[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.0a5"
__version__ = "1.0.0a6"

__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.0a5"
version = "1.0.0a6"
description = "Core utilities for Poetry"
authors = ["Sébastien Eustace <sebastien@eustace.io>"]

Expand Down

0 comments on commit 8f36036

Please sign in to comment.