diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8dd1eee..a1645e7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.1.1 [bumpversion:file:pyproject.toml] diff --git a/.copier-answers.yml b/.copier-answers.yml index f0149b8..20674ff 100644 --- a/.copier-answers.yml +++ b/.copier-answers.yml @@ -7,7 +7,7 @@ description: Kedro plugin with Snowflake / Snowpark support docs_url: https://kedro-snowflake.readthedocs.io/ full_name: Kedro Snowflake plugin github_url: https://github.com/getindata/kedro-snowflake -initial_version: 0.1.0 +initial_version: 0.1.1 keywords: - kedro - snowflake diff --git a/CHANGELOG.md b/CHANGELOG.md index bd6b05f..1e57603 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,13 +2,22 @@ ## [Unreleased] +## [0.1.1] - 2023-04-26 + +- Initial working release +- Updated docs / readme / quickstart + ## [0.1.0] - 2023-04-26 +- Initial working release + ## [0.0.1] - 2022-11-25 - Project seed prepared -[Unreleased]: https://github.com/getindata/kedro-snowflake/compare/0.1.0...HEAD +[Unreleased]: https://github.com/getindata/kedro-snowflake/compare/0.1.1...HEAD + +[0.1.1]: https://github.com/getindata/kedro-snowflake/compare/0.1.0...0.1.1 [0.1.0]: https://github.com/getindata/kedro-snowflake/compare/0.0.1...0.1.0 diff --git a/docs/index.rst b/docs/index.rst index 873c604..d9d470c 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -1,9 +1,9 @@ -.. Kedro AzureML Pipelines Plugin documentation master file, created by +.. Kedro Snowflake Plugin documentation master file, created by sphinx-quickstart on Fri Jan 8 18:01:47 2021. You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. -Welcome to Kedro Azure ML Pipelines plugin documentation! +Welcome to Kedro Snowflake plugin documentation! ================================================= .. toctree:: diff --git a/docs/source/02_installation.md b/docs/source/02_installation.md index e4b92ed..f5c782e 100644 --- a/docs/source/02_installation.md +++ b/docs/source/02_installation.md @@ -15,8 +15,6 @@ Install the plugin (it automatically installs Kedro in a supported version) $ pip install "kedro-snowflake>=0.1.0" ``` -Optionally, extra can be specified: `kedro-azureml[mlflow]`. - ### Install from sources You may want to install the develop branch which has unreleased features: diff --git a/kedro_snowflake/__init__.py b/kedro_snowflake/__init__.py index 3dc1f76..485f44a 100644 --- a/kedro_snowflake/__init__.py +++ b/kedro_snowflake/__init__.py @@ -1 +1 @@ -__version__ = "0.1.0" +__version__ = "0.1.1" diff --git a/kedro_snowflake/starters.py b/kedro_snowflake/starters.py index 999916b..8c59025 100644 --- a/kedro_snowflake/starters.py +++ b/kedro_snowflake/starters.py @@ -7,4 +7,3 @@ directory="kedro_snowflake/starters/snowflights", ) ] -# TODO - this shit does not work with Git, because Kedro Expects the git tag to be equal to Kedro version diff --git a/pyproject.toml b/pyproject.toml index 73b3099..1a96f4c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "kedro-snowflake" -version = "0.1.0" +version = "0.1.1" description = "Kedro plugin with Snowflake / Snowpark support" readme = "README.md" authors = ['GetInData MLOPS '] diff --git a/sonar-project.properties b/sonar-project.properties index 1f23683..75667fd 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -6,9 +6,12 @@ sonar.tests=tests/ sonar.python.coverage.reportPaths=coverage.xml sonar.python.version=3.9 -sonar.projectVersion=0.1.0 +sonar.projectVersion=0.1.1 sonar.projectDescription=Kedro plugin with Snowflake / Snowpark support sonar.links.homepage=https://kedro-snowflake.readthedocs.io/ sonar.links.ci=https://github.com/getindata/kedro-snowflake/actions sonar.links.issue=https://github.com/getindata/kedro-snowflake/issues -sonar.links.scm=https://github.com/getindata/kedro-snowflake/ \ No newline at end of file +sonar.links.scm=https://github.com/getindata/kedro-snowflake/ +sonar.coverage.exclusions=kedro_snowflake/starters/**/* +sonar.exclusions=kedro_snowflake/starters/**/* +