diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 76d14cd..e0891d8 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.9.22" + ".": "0.9.23" } diff --git a/CHANGELOG.md b/CHANGELOG.md index ed5bdda..f2bed82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ # Changelog +## [0.9.23](https://github.com/tekumara/fakesnow/compare/v0.9.22...v0.9.23) (2024-08-20) + + +### Features + +* **server:** support bool, int, float types ([efd4942](https://github.com/tekumara/fakesnow/commit/efd4942dcb5246b96501fcb65448c4b5da5509cb)) +* **server:** support cur.description ([6e9c1a5](https://github.com/tekumara/fakesnow/commit/6e9c1a582e7f95e3475ad676312cc1d9d3338386)) +* support conn.is_closed() ([36dd461](https://github.com/tekumara/fakesnow/commit/36dd4612017626e044cc26032acac6a998a59d58)), closes [#125](https://github.com/tekumara/fakesnow/issues/125) + ## [0.9.22](https://github.com/tekumara/fakesnow/compare/v0.9.21...v0.9.22) (2024-08-11) diff --git a/pyproject.toml b/pyproject.toml index dd9c3da..15d8098 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "fakesnow" description = "Fake Snowflake Connector for Python. Run, mock and test Snowflake DB locally." -version = "0.9.22" +version = "0.9.23" readme = "README.md" license = { file = "LICENSE" } classifiers = ["License :: OSI Approved :: MIT License"]