File tree Expand file tree Collapse file tree 4 files changed +13
-4
lines changed Expand file tree Collapse file tree 4 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 3838 # build binary wheel and a source tarball
3939 python -m build
4040 - name : Upload to PyPi
41- run : twine upload --username ${{ secrets.DGRAPH_PYPI_USERNAME }} --password ${{ secrets.DGRAPH_PYPI_PASSWORD }} dist/*
41+ run : twine upload --username ${{ secrets.DGRAPH_PYPI_USERNAME }} --password ${{ secrets.DGRAPH_PYPI_PASSWORD }} dist/*
Original file line number Diff line number Diff line change @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
66and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ v24.0.2] - 2024-07-24
9+
10+ ### Added
11+ * Create example computeEmbeddings.py by @rderbier in https://github.com/dgraph-io/pydgraph/pull/221
12+ * Allow flexible dependency versions by @gautambhat in https://github.com/dgraph-io/pydgraph/pull/233
13+ * update proto to make it consistent with dgraph-io/dgo by @mangalaman93 in https://github.com/dgraph-io/pydgraph/pull/237
14+ * Bump protobuf from 4.22.3 to 5.27.2 by @dependabot in https://github.com/dgraph-io/pydgraph/pull/231
15+ * Minor and patch dependency upgrades
16+
817## [ v23.0.2] - 2023-11-08
918
1019### Added
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ This document contains instructions to publish pydgraph to [PyPI].
1212
1313## Deploying
1414
15- - Regenerate protobufs if api.proto was changed
15+ - Regenerate protobufs if api.proto was changed, make sure to use python version used in ` .python-version ` file
1616- Bump version by modifying the ` VERSION ` variable in ` pydgraph/meta.py ` file
1717- Update the ` CHANGELOG.md ` file to reflect new changes
1818- Tag pydgraph locally (` git tag x.y.z ` ) and push to origin (` git push x.y.z ` )
19- - Run CD pipeline
19+ - Run CD pipeline
Original file line number Diff line number Diff line change 1414
1515"""Metadata about this package."""
1616
17- VERSION = '23 .0.2'
17+ VERSION = '24 .0.2'
You can’t perform that action at this time.
0 commit comments