File tree Expand file tree Collapse file tree 4 files changed +11
-6
lines changed Expand file tree Collapse file tree 4 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 6262 find . -type d -empty -delete
6363 - uses : actions/upload-artifact@v4
6464 with :
65- name : all-dist-${{ github.job }}
65+ name : all-dist
6666 path : " ./*"
6767
6868 publish :
7777 - name : Download all the dists
7878 uses : actions/download-artifact@v4
7979 with :
80- name : all-dist-${{ github.job }}
80+ name : all-dist
8181 path : dist/
8282 - name : Publish distribution 📦 to PyPI
8383 uses : pypa/gh-action-pypi-publish@release/v1
Original file line number Diff line number Diff line change 11Changelog
22=========
33
4+ Changes in Version 1.9.1
5+ ------------------------
6+
7+ - Fix bug in our release process which blocked uploading 1.9.0.
8+
49Changes in Version 1.9.0
510------------------------
611
Original file line number Diff line number Diff line change 1212# See the License for the specific language governing permissions and
1313# limitations under the License.
1414
15- __version__ = '1.9.0 '
15+ __version__ = '1.9.1 '
1616
1717_MIN_LIBMONGOCRYPT_VERSION = '1.8.0'
Original file line number Diff line number Diff line change @@ -27,13 +27,13 @@ rm -rf dist .venv build libmongocrypt pymongocrypt/*.so pymongocrypt/*.dll pymon
2727
2828function get_libmongocrypt() {
2929 TARGET=$1
30- NOCRYPTO_SO =$2
30+ MONGOCRYPT_SO =$2
3131 rm -rf build libmongocrypt pymongocrypt/* .so pymongocrypt/* .dll pymongocrypt/* .dylib
3232 curl -O https://s3.amazonaws.com/mciuploads/libmongocrypt-release/$TARGET /${BRANCH} /${REVISION} /libmongocrypt.tar.gz
3333 mkdir libmongocrypt
3434 tar xzf libmongocrypt.tar.gz -C ./libmongocrypt
35- chmod +x ${NOCRYPTO_SO }
36- cp ${NOCRYPTO_SO } pymongocrypt/
35+ chmod +x ${MONGOCRYPT_SO }
36+ cp ${MONGOCRYPT_SO } pymongocrypt/
3737 rm -rf ./libmongocrypt libmongocrypt.tar.gz
3838}
3939
You can’t perform that action at this time.
0 commit comments