Skip to content

Commit 433377c

Browse files
committed
release: v2.7.13
1 parent bfc42fb commit 433377c

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## v2.7.13 - 2024-01-26
11+
12+
### Bug Fixes:
13+
14+
- mem leak
15+
16+
### Enhancements:
17+
18+
- add api committed, position
19+
- add taos.cfg
20+
- separate the build and test processe
21+
- start tdengine in job
22+
- update cargo taos version
23+
- update step
24+
- **(ws)**: add tmq commit_offset
25+
- **(ws)**: add tmq list_topic
26+
27+
### Documents:
28+
29+
- update dev cmd
30+
1031
## v2.7.12 - 2023-09-11
1132

1233
### Bug Fixes:

ci/release.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ if [ "$newv" = "" ]; then
66
exit 1
77
fi
88
echo "__version__ = '$newv'" > taos/_version.py
9-
sed -Ei '3s#^version\s*=.*$#version = "'$newv'"#' pyproject.toml
9+
sed -E '3s#version.*#version = "'$newv'"#' pyproject.toml >> pyproject.toml2
10+
mv pyproject.toml2 pyproject.toml
1011

1112
sed -n "1,9p" CHANGELOG.md > CHANGELOG.md2
1213
printf "## v$newv - $(date +%F)\n\n" >> CHANGELOG.md2

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "taospy"
3-
version = "2.7.12"
3+
version = "2.7.13"
44
description = "TDengine connector for python"
55
authors = ["Taosdata Inc. <support@taosdata.com>"]
66
license = "MIT"

taos/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.7.12'
1+
__version__ = '2.7.13'

0 commit comments

Comments
 (0)