From 3df1d240137ae4199fc0e98b15a95a3a367f0ec8 Mon Sep 17 00:00:00 2001 From: Thomas Schmidt Date: Fri, 3 Nov 2023 08:38:32 +0100 Subject: [PATCH] Prepare for v0.3.0 release --- CHANGELOG.md | 13 ++++++++++++- pyproject.toml | 2 +- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e687788..90cf0c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,9 +11,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Added + +### Changed + + +## [0.3.0] + +**Full Changelog**: https://github.com/DeepLcom/sql-mock/compare/v0.2.0...v0.3.0 + ### Added * Now you can also pass a `query` to the `table_meta`. The `query_path` will overwrite a `query` in case both are provided * New method `assert_cte_equal` that allows to check the output of a specific CTE in the query you want to test. +* Added documentation page ### Changed @@ -37,6 +47,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.2] - 2023-10-26 Initial version. -[Unreleased]: https://github.com/DeepLcom/sql-mock/compare/v0.2.0...HEAD +[Unreleased]: https://github.com/DeepLcom/sql-mock/compare/v0.3.0...HEAD +[0.3.0]: https://github.com/DeepLcom/sql-mock/releases/tag/v0.3.0 [0.2.0]: https://github.com/DeepLcom/sql-mock/releases/tag/v0.2.0 [0.1.2]: https://github.com/DeepLcom/sql-mock/releases/tag/v0.1.2 diff --git a/pyproject.toml b/pyproject.toml index d5aadc1..9012028 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "sql-mock" -version = "0.2.0" +version = "0.3.0" description = "Simplify the testing of SQL data models and queries by allowing users to mock input data and create tests for various scenarios. It provides a consistent and convenient way to test the execution of your query without the need to process a massive amount of data." repository = "https://github.com/DeepLcom/sql-mock" readme = "README.md"