Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@ Changelog
=========


v0.1.2
------

- Use correct package name to extract version metadata https://github.com/aboutcode-org/healthycode/pull/11


v0.1.1
------

- Add proper permissions for release workflow https://github.com/aboutcode-org/healthycode/pull/8


v0.1.0
------

Expand Down
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 = "healthycode"
version = "0.1.0"
version = "0.1.2"
description = "Client to generate GrimoireLab metrics for Project Health using the software analytics platform GrimoireLab"
authors = [
"Bitergia Developers",
Expand Down
2 changes: 1 addition & 1 deletion src/grimoirelab_metrics/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def grimoirelab_metrics(
package_metrics["packages"][package] = {"metrics": None}

package_metrics["metadata"] = {
"version": version("grimoirelab-metrics"),
"version": version("healthycode"),
"started_at": start_date.isoformat(),
"finished_at": datetime.datetime.now(datetime.UTC).isoformat(),
}
Expand Down
Loading