From d7da866363bf91b3ec5e94c32261c49db1dffc68 Mon Sep 17 00:00:00 2001 From: serramatutu Date: Wed, 9 Apr 2025 14:20:03 +0000 Subject: [PATCH] version: 0.10.0 ## v0.10.0 - 2025-04-09 ### Features * Add support to pass in typed group by ### Chore * Make `pyright` run on `strict` mode and add `mypy`. --- .changes/unreleased/Chore-20250403-163034.yaml | 3 --- .changes/unreleased/Features-20250327-224851.yaml | 3 --- .changes/v0.10.0.md | 5 +++++ CHANGELOG.md | 6 ++++++ dbtsl/__about__.py | 2 +- 5 files changed, 12 insertions(+), 7 deletions(-) delete mode 100644 .changes/unreleased/Chore-20250403-163034.yaml delete mode 100644 .changes/unreleased/Features-20250327-224851.yaml create mode 100644 .changes/v0.10.0.md diff --git a/.changes/unreleased/Chore-20250403-163034.yaml b/.changes/unreleased/Chore-20250403-163034.yaml deleted file mode 100644 index 5efd48d..0000000 --- a/.changes/unreleased/Chore-20250403-163034.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Chore -body: Make `pyright` run on `strict` mode and add `mypy`. -time: 2025-04-03T16:30:34.024926+02:00 diff --git a/.changes/unreleased/Features-20250327-224851.yaml b/.changes/unreleased/Features-20250327-224851.yaml deleted file mode 100644 index 5419e16..0000000 --- a/.changes/unreleased/Features-20250327-224851.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Features -body: Add support to pass in typed group by -time: 2025-03-27T22:48:51.368818-05:00 diff --git a/.changes/v0.10.0.md b/.changes/v0.10.0.md new file mode 100644 index 0000000..2afe252 --- /dev/null +++ b/.changes/v0.10.0.md @@ -0,0 +1,5 @@ +## v0.10.0 - 2025-04-09 +### Features +* Add support to pass in typed group by +### Chore +* Make `pyright` run on `strict` mode and add `mypy`. diff --git a/CHANGELOG.md b/CHANGELOG.md index af77a04..ddbefb8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. Do not edit this file manually, it is generated automatically by [changie](https://github.com/miniscruff/changie). +## v0.10.0 - 2025-04-09 +### Features +* Add support to pass in typed group by +### Chore +* Make `pyright` run on `strict` mode and add `mypy`. + ## v0.9.1 - 2025-03-31 ### Fixes * Added `FlexibleEnumMeta` to make enums non-breaking when we add a new value to the API. diff --git a/dbtsl/__about__.py b/dbtsl/__about__.py index 3efa2fa..412148a 100644 --- a/dbtsl/__about__.py +++ b/dbtsl/__about__.py @@ -1 +1 @@ -VERSION = "0.9.1" +VERSION = "0.10.0"