Skip to content

Commit bfcfdab

Browse files
authored
bump version to 4.1.8 (#532)
1 parent 9f00ced commit bfcfdab

4 files changed

Lines changed: 12 additions & 8 deletions

File tree

.github/workflows/publish-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
uses: actions/cache@v3
3030
with:
3131
path: /opt/hostedtoolcache/Python
32-
key: ${{ matrix.os }}-python${{ matrix.python-version }}-pip-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}
32+
key: publish-doc-${{ matrix.os }}-python${{ matrix.python-version }}-pip-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}
3333

3434
- name: Install Python Packages
35-
if: steps.pip-cache.outputs.cache-hit != 'true'
35+
# if: steps.pip-cache.outputs.cache-hit != 'true'
3636
run: |
3737
python -m pip install --upgrade 'pip<25.1'
3838
pip install -r requirements-dev.txt

.github/workflows/run-tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
key: ${{ matrix.os }}-py${{ matrix.python-version }}-pip-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}
3333

3434
- name: Install Python Packages
35-
if: steps.pip-cache.outputs.cache-hit != 'true'
35+
# if: steps.pip-cache.outputs.cache-hit != 'true'
3636
run: |
3737
python -m pip install --upgrade 'pip<25.1'
3838
pip install -r requirements-dev.txt
@@ -78,7 +78,7 @@ jobs:
7878
key: ${{ matrix.os }}-py${{ matrix.python-version }}-pip-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}
7979

8080
- name: Install Python Packages
81-
if: steps.pip-cache.outputs.cache-hit != 'true'
81+
# if: steps.pip-cache.outputs.cache-hit != 'true'
8282
run: |
8383
python -m pip install --upgrade 'pip<25.1'
8484
pip install -r requirements-dev.txt
@@ -115,7 +115,7 @@ jobs:
115115
key: ${{ matrix.os }}-py${{ matrix.python-version }}-pip-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}
116116

117117
- name: Install Python Packages
118-
if: steps.pip-cache.outputs.cache-hit != 'true'
118+
# if: steps.pip-cache.outputs.cache-hit != 'true'
119119
run: |
120120
python -m pip install --upgrade 'pip<25.1'
121121
pip install -r requirements-dev.txt
@@ -152,7 +152,7 @@ jobs:
152152
key: ${{ matrix.os }}-python${{ matrix.python-version }}-pip-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}
153153

154154
- name: Install Python Packages
155-
if: steps.pip-cache.outputs.cache-hit != 'true'
155+
# if: steps.pip-cache.outputs.cache-hit != 'true'
156156
run: |
157157
python -m pip install --upgrade 'pip<25.1'
158158
pip install -r requirements-dev.txt
@@ -201,7 +201,7 @@ jobs:
201201
key: ${{ matrix.os }}-py${{ matrix.python-version }}-pip-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}
202202

203203
- name: Install Python Packages
204-
if: steps.pip-cache.outputs.cache-hit != 'true'
204+
# if: steps.pip-cache.outputs.cache-hit != 'true'
205205
run: |
206206
python -m pip install --upgrade 'pip<25.1'
207207
pip install -r requirements-dev.txt

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 4.1.8 - 2025.06.13
2+
- perf
3+
- optimize `smart_open` for S3-to-S3 transfers using s3+protocol in path
4+
15
## 4.1.7 - 2025.05.28
26
- feat
37
- support `AWS_PROFILE`, `[PROFILE__]AWS_ENDPOINT_URL` and `[PROFILE__]AWS_ENDPOINT_URL_S3` environments

megfile/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "4.1.7"
1+
VERSION = "4.1.8"

0 commit comments

Comments
 (0)