Skip to content

Commit c6e90d2

Browse files
committed
Merge branch 'release-4.1.2'
2 parents f21fff9 + 790ef4c commit c6e90d2

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ name: Release to PyPI
22

33
on:
44
push:
5-
branches:
6-
- release
75
tags:
86
- 'v*.*.*'
97
jobs:
@@ -34,9 +32,10 @@ jobs:
3432
. venv/bin/activate
3533
pip install twine
3634
37-
- name: Build tarball
35+
- name: Build tarball and wheel
3836
run: |
3937
. venv/bin/activate
38+
pip install wheel
4039
python setup.py sdist bdist_wheel
4140
4241
- name: Upload tarball to PyPI

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Unreleased
22

3-
# 4.1.1, 18 Jan 2021
3+
# 4.1.2, 18 Jan 2021
44

55
- Correctly pass boto3 resource to writers (PR [#576](https://github.com/RaRe-Technologies/smart_open/pull/576), [@jackluo923](https://github.com/jackluo923))
66
- Improve robustness of S3 reading (PR [#552](https://github.com/RaRe-Technologies/smart_open/pull/552), [@mpenkov](https://github.com/mpenkov))

release/merge.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ git push --tags upstream master
6767

6868
git checkout develop
6969
dev_version="$version.dev0"
70-
sed -i '' s/$(python smart_open/version.py)/$dev_version/ smart_open/version.py
70+
sed --in-place= -e s/$(python smart_open/version.py)/$dev_version/ smart_open/version.py
7171
git commit smart_open/version.py -m "bump version to $dev_version"
7272
git push upstream develop
7373

smart_open/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '4.1.1'
1+
__version__ = '4.1.2'
22

33

44
if __name__ == '__main__':

0 commit comments

Comments
 (0)