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 38
38
# build binary wheel and a source tarball
39
39
python -m build
40
40
- 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.
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
6
6
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
7
7
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
+
8
17
## [ v23.0.2] - 2023-11-08
9
18
10
19
### Added
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ This document contains instructions to publish pydgraph to [PyPI].
12
12
13
13
## Deploying
14
14
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
16
16
- Bump version by modifying the ` VERSION ` variable in ` pydgraph/meta.py ` file
17
17
- Update the ` CHANGELOG.md ` file to reflect new changes
18
18
- 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 14
14
15
15
"""Metadata about this package."""
16
16
17
- VERSION = '23 .0.2'
17
+ VERSION = '24 .0.2'
You can’t perform that action at this time.
0 commit comments