diff --git a/.github/workflows/build-pip.yml b/.github/workflows/build-pip.yml index 6dfd6fc..d28ce60 100644 --- a/.github/workflows/build-pip.yml +++ b/.github/workflows/build-pip.yml @@ -17,6 +17,9 @@ jobs: with: python-version: 3.9 + - name: Get tags + run: git fetch --tags origin + - name: Install pypa/build run: >- python -m @@ -27,7 +30,7 @@ jobs: - name: Build a binary wheel and a source tarball run: | echo `pwd` - echo `git log|head -n 50` + echo `git describe --tags` python setup.py -q sdist bdist_wheel --universal - name: Archive production artifacts diff --git a/.github/workflows/publish-pypi.yml b/.github/workflows/publish-pypi.yml index 7f97b0a..c428848 100644 --- a/.github/workflows/publish-pypi.yml +++ b/.github/workflows/publish-pypi.yml @@ -30,6 +30,11 @@ jobs: with: python-version: 3.9 + - name: Get tags and checkout target version + run: | + git fetch --tags origin + git checkout ${{ github.event.inputs.publish_version }} + - name: Install pypa/build run: >- python -m diff --git a/HISTORY.rst b/HISTORY.rst index 6e93ec4..5ce5231 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,5 +1,9 @@ History ======= +2.6.2 (2023-07-30) +------------------- +* Removed version limit for protobuf + 2.6.1 (2023-06-18) ------------------- * Expose use_strict_trace parameter in add_graph (#694)