Skip to content

Commit

Permalink
Bump version to 1.0.0rc3
Browse files Browse the repository at this point in the history
  • Loading branch information
sdispater committed Sep 30, 2020
1 parent f4e5ce2 commit 4a5ecd2
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 10 deletions.
26 changes: 18 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## [1.0.0rc3] - 2020-09-30

### Changed

- Removed `intreehooks` build backend in favor of the `backend-path` mechanism ([#90](https://github.com/python-poetry/poetry-core/pull/90)).
- Directory dependencies will now always use a posix path for their representation ([#90](https://github.com/python-poetry/poetry-core/pull/91)).
- Dependency constraints can now be set directly via a proper setter ([#90](https://github.com/python-poetry/poetry-core/pull/90)).


## [1.0.0rc2] - 2020-09-25

### Fixed
Expand Down Expand Up @@ -102,11 +111,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.0rc2...master
[1.0.0rc2]: https://github.com/python-poetry/poetry/releases/tag/1.0.0rc2
[1.0.0rc1]: https://github.com/python-poetry/poetry/releases/tag/1.0.0rc1
[1.0.0b1]: https://github.com/python-poetry/poetry/releases/tag/1.0.0b1
[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
[Unreleased]: https://github.com/python-poetry/poetry-core/compare/1.0.0rc3...master
[1.0.0rc3]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.0rc3
[1.0.0rc2]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.0rc2
[1.0.0rc1]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.0rc1
[1.0.0b1]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.0b1
[1.0.0a9]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.0a9
[1.0.0a8]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.0a8
[1.0.0a7]: https://github.com/python-poetry/poetry-core/releases/tag/1.0.0a7
[1.0.0a6]: https://github.com/python-poetry/poetry-core/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.0rc2"
__version__ = "1.0.0rc3"

__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.0rc2"
version = "1.0.0rc3"
description = "Poetry PEP 517 Build Backend"
authors = ["Sébastien Eustace <[email protected]>"]

Expand Down

0 comments on commit 4a5ecd2

Please sign in to comment.