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 1.1.14 #53

Merged
merged 2 commits into from
Jul 12, 2022
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: 30 additions & 0 deletions content/blog/2022-07-08-announcing-poetry-1-1-14.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
layout: single
title: "Announcing Poetry 1.1.14"
date: 2022-07-08 00:00:00
categories: [releases]
tags: ["1.x", "1.1"]
---

The Poetry team is pleased to announce the immediate availability of Poetry **1.1.14**.

<!--more-->

This release is a bugfix release necessary due to a breaking change on PyPI JSON API.

If you have a previous version of Poetry installed via the [official installer](/docs/#installation),
getting Poetry **1.1.14** is as easy as:

```bash
$ poetry self update
```

Afterwards you have to clear the Poetry cache manually to get everything working again:

```bash
$ poetry cache clear --all pypi
```

## Fixed

- Fixed an issue where dependencies hashes could not be retrieved when locking due to a breaking change on PyPI JSON API ([#5973](https://github.com/python-poetry/poetry/pull/5973))
radoering marked this conversation as resolved.
Show resolved Hide resolved
7 changes: 7 additions & 0 deletions content/history.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ layout: single
title: History
---

## [1.1.14] - 2022-07-08

## Fixed

- Fixed an issue where dependencies hashes could not be retrieved when locking due to a breaking change on PyPI JSON API ([#5973](https://github.com/python-poetry/poetry/pull/5973))

## [1.2.0b1] - 2022-03-17

### Fixed
Expand Down Expand Up @@ -1201,6 +1207,7 @@ This release **must** be downloaded via the `get-poetry.py` script and not via t
Initial release

[unreleased]: https://github.com/python-poetry/poetry/compare/1.2.0b1...master
[1.1.14]: https://github.com/python-poetry/poetry/releases/tag/1.1.14
[1.2.0b1]: https://github.com/python-poetry/poetry/releases/tag/1.2.0b1
[1.1.13]: https://github.com/python-poetry/poetry/releases/tag/1.1.13
[1.1.12]: https://github.com/python-poetry/poetry/releases/tag/1.1.12
Expand Down
Loading