Skip to content

Commit 8f36036

Browse files
authored
Merge pull request #29 from python-poetry/release-1.0.0a6
Release 1.0.0a6
2 parents 127a32c + 2d6c55e commit 8f36036

File tree

3 files changed

+31
-2
lines changed

3 files changed

+31
-2
lines changed

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Change Log
2+
3+
## [1.0.0a6] - 2020-04-24
4+
5+
6+
### Added
7+
8+
- Added support for markers inverse ([#21](https://github.com/python-poetry/core/pull/21)).
9+
- Added support for specifying that `git` dependencies should be installed in develop mode ([#23](https://github.com/python-poetry/core/pull/23)).
10+
- Added the ability to specify build settings from the Poetry main configuration file ([#26](https://github.com/python-poetry/core/pull/26)).
11+
- Added the ability to disable the generation of the `setup.py` file when building ([#26](https://github.com/python-poetry/core/pull/26)).
12+
13+
### Changed
14+
15+
- Relaxed licence restrictions to support custom licences ([#5](https://github.com/python-poetry/core/pull/5)).
16+
- Improved support for PEP-440 direct references ([#22](https://github.com/python-poetry/core/pull/22)).
17+
- Improved dependency vendoring ([#25](https://github.com/python-poetry/core/pull/25)).
18+
19+
### Fixed
20+
21+
- Fixed the inability to make the url dependencies optional ([#13](https://github.com/python-poetry/core/pull/13)).
22+
- Fixed whitespaces in PEP-440 constraints causing an error ([#16](https://github.com/python-poetry/core/pull/16)).
23+
- Fixed subpackage check when generating the `setup.py` file ([#17](https://github.com/python-poetry/core/pull/17)).
24+
- Fix PEP-517 issues for projects using build scripts ([#12](https://github.com/python-poetry/core/pull/12)).
25+
- Fixed support for stub-only packages ([#28](https://github.com/python-poetry/core/pull/28)).
26+
27+
28+
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.0.0a6...master
29+
[1.0.0a6]: https://github.com/python-poetry/poetry/releases/tag/1.0.0a6

poetry/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# noinspection PyUnresolvedReferences
88
from pathlib2 import Path
99

10-
__version__ = "1.0.0a5"
10+
__version__ = "1.0.0a6"
1111

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "poetry-core"
3-
version = "1.0.0a5"
3+
version = "1.0.0a6"
44
description = "Core utilities for Poetry"
55
authors = ["Sébastien Eustace <[email protected]>"]
66

0 commit comments

Comments
 (0)