Skip to content

Commit

Permalink
build(telemetry): Release 0.3.1 (#475)
Browse files Browse the repository at this point in the history
  • Loading branch information
SajidAlamQB authored Dec 12, 2023
1 parent e18738f commit 1bba59e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
2 changes: 2 additions & 0 deletions kedro-telemetry/RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Upcoming release

# Release 0.3.1
* Fixed double execution of `after_catalog_created` hook by moving the logic of determining and sending of project statistics from `after_context_created` to the `after_catalog_created` hook.
* Updated the plugin to also share the tools selected during project creation with Heap.

Expand Down
2 changes: 1 addition & 1 deletion kedro-telemetry/kedro_telemetry/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Kedro plugin for collecting Kedro usage data."""

__version__ = "0.3.0"
__version__ = "0.3.1"
2 changes: 1 addition & 1 deletion kedro-telemetry/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description = "Kedro-Telemetry"
requires-python = ">=3.8"
license = {text = "Apache Software License (Apache 2.0)"}
dependencies = [
"kedro~=0.18.0",
"kedro>=0.18.0",
"requests~=2.20",
]
dynamic = ["readme", "version"]
Expand Down
11 changes: 6 additions & 5 deletions kedro-telemetry/tests/test_masking.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,16 @@
REPO_NAME = "cli_tools_dummy_project"
PACKAGE_NAME = "cli_tools_dummy_package"
DEFAULT_KEDRO_COMMANDS = [
"activate-nbstripout",
"build-docs",
"build-reqs",
"catalog",
"ipython",
"jupyter",
"lint",
"micropkg",
"new",
"package",
"pipeline",
"registry",
"run",
"starter",
"test",
]


Expand Down Expand Up @@ -109,6 +104,12 @@ def test_get_cli_structure_depth(self, mocker, fake_metadata):
"--checkout",
"--directory",
"--help",
"--example",
"--name",
"--tools",
"-e",
"-n",
"-t",
]
)
# now check that once params and args are reached, the values are None
Expand Down

0 comments on commit 1bba59e

Please sign in to comment.