Skip to content

Commit dde44ef

Browse files
authored
Merge branch 'main' into sqlalchemy-fix
2 parents 53e9785 + fc326d5 commit dde44ef

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

.github/workflows/python-publish.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,6 @@ jobs:
6969
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_OUTPUT
7070
echo "New version: $NEW_VERSION" >> $GITHUB_STEP_SUMMARY
7171
72-
git add $SETUP_PY_PATH
73-
git add $CHANGELOG_FILE
74-
7572
- name: Build package
7673
run: python -m build
7774

@@ -93,7 +90,7 @@ jobs:
9390
9491
git config --global user.email "robot@umbrella";
9592
git config --global user.name "robot";
96-
git commit -m "Release: $NEW_VERSION";
93+
git commit -am "Release: $TAG";
9794
9895
git tag "$TAG"
9996
git push && git push --tags

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 2.13.2 ##
2+
* fix snapshot attribute in class _ResultSet
3+
4+
## 2.13.1 ##
5+
* fixed set version in ydb_version file
6+
17
## 2.13.0 ##
28
* fixed in to make compressed backups possible
39
* Add snapshot to read table responses

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
setuptools.setup(
1515
name="ydb",
16-
version="2.13.0", # AUTOVERSION
16+
version="2.13.2", # AUTOVERSION
1717
description="YDB Python SDK",
1818
author="Yandex LLC",
1919
author_email="[email protected]",

ydb/convert.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,7 @@ def __init__(self, columns, rows, truncated, snapshot=None):
319319
self.columns = columns
320320
self.rows = rows
321321
self.truncated = truncated
322+
self.snapshot = snapshot
322323

323324
@classmethod
324325
def from_message(cls, message, table_client_settings=None, snapshot=None):

ydb/ydb_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "2.10.0"
1+
VERSION = "2.13.2"

0 commit comments

Comments
 (0)