Skip to content

Commit

Permalink
Merge pull request #6 from getindata/release-0.1.1
Browse files Browse the repository at this point in the history
Release 0.1.1
  • Loading branch information
marrrcin authored Apr 26, 2023
2 parents 2ce46c5 + b667e50 commit ff1b336
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.0
current_version = 0.1.1

[bumpversion:file:pyproject.toml]

Expand Down
2 changes: 1 addition & 1 deletion .copier-answers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
@@ -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::
Expand Down
2 changes: 0 additions & 2 deletions docs/source/02_installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion kedro_snowflake/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.0"
__version__ = "0.1.1"
1 change: 0 additions & 1 deletion kedro_snowflake/starters.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
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 = "kedro-snowflake"
version = "0.1.0"
version = "0.1.1"
description = "Kedro plugin with Snowflake / Snowpark support"
readme = "README.md"
authors = ['GetInData MLOPS <mlops@getindata.com>']
Expand Down
7 changes: 5 additions & 2 deletions sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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/
sonar.links.scm=https://github.com/getindata/kedro-snowflake/
sonar.coverage.exclusions=kedro_snowflake/starters/**/*
sonar.exclusions=kedro_snowflake/starters/**/*

0 comments on commit ff1b336

Please sign in to comment.