Skip to content

Commit

Permalink
release v2.6.2 (#713)
Browse files Browse the repository at this point in the history
  • Loading branch information
lanpa committed Jul 30, 2023
1 parent b7de4b2 commit 79a1758
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build-pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -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)
Expand Down

0 comments on commit 79a1758

Please sign in to comment.