Skip to content

Commit

Permalink
release: v2.7.13
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamEECS committed Jan 26, 2024
1 parent bfc42fb commit 433377c
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## v2.7.13 - 2024-01-26

### Bug Fixes:

- mem leak

### Enhancements:

- add api committed, position
- add taos.cfg
- separate the build and test processe
- start tdengine in job
- update cargo taos version
- update step
- **(ws)**: add tmq commit_offset
- **(ws)**: add tmq list_topic

### Documents:

- update dev cmd

## v2.7.12 - 2023-09-11

### Bug Fixes:
Expand Down
3 changes: 2 additions & 1 deletion ci/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ if [ "$newv" = "" ]; then
exit 1
fi
echo "__version__ = '$newv'" > taos/_version.py
sed -Ei '3s#^version\s*=.*$#version = "'$newv'"#' pyproject.toml
sed -E '3s#version.*#version = "'$newv'"#' pyproject.toml >> pyproject.toml2
mv pyproject.toml2 pyproject.toml

sed -n "1,9p" CHANGELOG.md > CHANGELOG.md2
printf "## v$newv - $(date +%F)\n\n" >> CHANGELOG.md2
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "taospy"
version = "2.7.12"
version = "2.7.13"
description = "TDengine connector for python"
authors = ["Taosdata Inc. <support@taosdata.com>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion taos/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.7.12'
__version__ = '2.7.13'

0 comments on commit 433377c

Please sign in to comment.