Skip to content

Commit fff04c7

Browse files
authored
Merge pull request #4214 from python-poetry/release-1.1.7
Release 1.1.7
2 parents e077339 + e9312d1 commit fff04c7

File tree

7 files changed

+154
-75
lines changed

7 files changed

+154
-75
lines changed

.github/workflows/release.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
python-version: "3.8"
4646
- name: Install Poetry
4747
run: |
48-
python get-poetry.py --preview -y
48+
python get-poetry.py -y
4949
source $HOME/.poetry/env
5050
- name: Install dependencies
5151
run: |
@@ -58,17 +58,17 @@ jobs:
5858
curl -L https://github.com/sdispater/python-binaries/releases/download/3.6.8/python-3.6.8.macos.tar.xz -o python-3.6.8.tar.xz
5959
curl -L https://github.com/sdispater/python-binaries/releases/download/3.7.6/python-3.7.6.macos.tar.xz -o python-3.7.6.tar.xz
6060
curl -L https://github.com/sdispater/python-binaries/releases/download/3.8.3/python-3.8.3.macos.tar.xz -o python-3.8.3.tar.xz
61-
curl -L https://github.com/sdispater/python-binaries/releases/download/3.9.0b4/python-3.9.0b4.macos.tar.xz -o python-3.9.0b4.tar.xz
61+
curl -L https://github.com/sdispater/python-binaries/releases/download/3.9.5/python-3.9.5.macos.tar.xz -o python-3.9.5.tar.xz
6262
tar -zxf python-2.7.18.tar.xz
6363
tar -zxf python-3.5.9.tar.xz
6464
tar -zxf python-3.6.8.tar.xz
6565
tar -zxf python-3.7.6.tar.xz
6666
tar -zxf python-3.8.3.tar.xz
67-
tar -zxf python-3.9.0b4.tar.xz
67+
tar -zxf python-3.9.5.tar.xz
6868
- name: Build specific release
6969
run: |
7070
source $HOME/.poetry/env
71-
poetry run python sonnet make release --ansi -P "2.7:python-2.7.18/bin/python" -P "3.5:python-3.5.9/bin/python" -P "3.6:python-3.6.8/bin/python" -P "3.7:python-3.7.6/bin/python" -P "3.8:python-3.8.3/bin/python" -P "3.9:python-3.9.0b4/bin/python"
71+
poetry run python sonnet make release --ansi -P "2.7:python-2.7.18/bin/python" -P "3.5:python-3.5.9/bin/python" -P "3.6:python-3.6.8/bin/python" -P "3.7:python-3.7.6/bin/python" -P "3.8:python-3.8.3/bin/python" -P "3.9:python-3.9.5/bin/python"
7272
- name: Upload release file
7373
uses: actions/upload-artifact@v1
7474
with:
@@ -96,7 +96,7 @@ jobs:
9696
python-version: "3.8"
9797
- name: Install Poetry
9898
run: |
99-
python get-poetry.py --preview -y
99+
python get-poetry.py -y
100100
$env:Path += ";$env:Userprofile\.poetry\bin"
101101
- name: Install dependencies
102102
run: |
@@ -109,24 +109,24 @@ jobs:
109109
Invoke-WebRequest https://github.com/sdispater/python-binaries/releases/download/3.6.8/python-3.6.8.windows.tar.xz -O python-3.6.8.tar.xz
110110
Invoke-WebRequest https://github.com/sdispater/python-binaries/releases/download/3.7.6/python-3.7.6.windows.tar.xz -O python-3.7.6.tar.xz
111111
Invoke-WebRequest https://github.com/sdispater/python-binaries/releases/download/3.8.3/python-3.8.3.windows.tar.xz -O python-3.8.3.tar.xz
112-
Invoke-WebRequest https://github.com/sdispater/python-binaries/releases/download/3.9.0b4/python-3.9.0b4.windows.tar.xz -O python-3.9.0b4.tar.xz
112+
Invoke-WebRequest https://github.com/sdispater/python-binaries/releases/download/3.9.5/python-3.9.5.windows.tar.xz -O python-3.9.5.tar.xz
113113
7z x python-2.7.17.tar.xz
114114
7z x python-3.5.4.tar.xz
115115
7z x python-3.6.8.tar.xz
116116
7z x python-3.7.6.tar.xz
117117
7z x python-3.8.3.tar.xz
118-
7z x python-3.9.0b4.tar.xz
118+
7z x python-3.9.5.tar.xz
119119
7z x python-2.7.17.tar
120120
7z x python-3.4.4.tar
121121
7z x python-3.5.4.tar
122122
7z x python-3.6.8.tar
123123
7z x python-3.7.6.tar
124124
7z x python-3.8.3.tar
125-
7z x python-3.9.0b4.tar
125+
7z x python-3.9.5.tar
126126
- name: Build specific release
127127
run: |
128128
$env:Path += ";$env:Userprofile\.poetry\bin"
129-
poetry run python sonnet make release --ansi -P "2.7:python-2.7.17\python.exe" -P "3.5:python-3.5.4\python.exe" -P "3.6:python-3.6.8\python.exe" -P "3.7:python-3.7.6\python.exe" -P "3.8:python-3.8.3\python.exe" -P "3.9:python-3.9.0b4\python.exe"
129+
poetry run python sonnet make release --ansi -P "2.7:python-2.7.17\python.exe" -P "3.5:python-3.5.4\python.exe" -P "3.6:python-3.6.8\python.exe" -P "3.7:python-3.7.6\python.exe" -P "3.8:python-3.8.3\python.exe" -P "3.9:python-3.9.5\python.exe"
130130
- name: Upload release file
131131
uses: actions/upload-artifact@v1
132132
with:
@@ -249,7 +249,7 @@ jobs:
249249
python-version: "3.8"
250250
- name: Install Poetry
251251
run: |
252-
python get-poetry.py --preview -y
252+
python get-poetry.py -y
253253
- name: Install dependencies
254254
run: |
255255
source $HOME/.poetry/env

CHANGELOG.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Change Log
22

3+
## [1.1.7] - 2012-06-25
4+
5+
**Note**: Lock files might need to be regenerated for the first fix below to take effect.
6+
You can use `poetry lock` to do so **without** the `--no-update` option.
7+
8+
### Changed
9+
10+
- This release is compatible with the `install-poetry.py` installation script to ease the migration path from `1.1` releases to `1.2` releases. ([#4192](https://github.com/python-poetry/poetry/pull/4192))
11+
12+
### Fixed
13+
14+
- Fixed an issue where transitive dependencies of directory or VCS dependencies were not installed or otherwise removed. ([#4203](https://github.com/python-poetry/poetry/pull/4203))
15+
- Fixed an issue where the combination of the `--tree` and `--no-dev` options for the show command was still displaying development dependencies. ([#3992](https://github.com/python-poetry/poetry/pull/3992))
16+
17+
318
## [1.1.6] - 2021-04-14
419

520
### Fixed
@@ -1108,7 +1123,8 @@ Initial release
11081123

11091124

11101125

1111-
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.6...master
1126+
[Unreleased]: https://github.com/python-poetry/poetry/compare/1.1.7...master
1127+
[1.1.7]: https://github.com/python-poetry/poetry/compare/1.1.7
11121128
[1.1.6]: https://github.com/python-poetry/poetry/compare/1.1.6
11131129
[1.1.5]: https://github.com/python-poetry/poetry/compare/1.1.5
11141130
[1.1.4]: https://github.com/python-poetry/poetry/compare/1.1.4

make-nix-release.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUNTIMES[4]="${PYTHON38:+-P "3.8:$PYTHON38"}"
1111
test -n "$PYTHON" || PYTHON="python3"
1212

1313
if [ "$OSTYPE" == "linux-gnu" ]; then
14-
$PYTHON get-poetry.py -y --preview
14+
$PYTHON get-poetry.py -y
1515
POETRY="$PYTHON $HOME/.poetry/bin/poetry"
1616
RUNTIMES[5]="${PYTHON39:+-P "3.9:$PYTHON39"}"
1717
else

0 commit comments

Comments
 (0)