Skip to content

Commit 91f963c

Browse files
authored
prepare to release version v24.0.2 (#239)
1 parent 68411b6 commit 91f963c

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

.github/workflows/cd-pydgraph.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ jobs:
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/*

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and 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

PUBLISHING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

pydgraph/meta.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
"""Metadata about this package."""
1616

17-
VERSION = '23.0.2'
17+
VERSION = '24.0.2'

0 commit comments

Comments
 (0)