Skip to content

Commit 86e9047

Browse files
RamanDamayeuRaman Damayeuclaude
authored
Bump versions for AWS, GCP, and Azure collectors (#132)
- odd-collector-aws: 0.1.17 → 0.1.18 - odd-collector-gcp: 0.1.5 → 0.1.6 - odd-collector-azure: 0.1.6 → 0.1.7 Added __version__.py and get_version() for Azure collector to match the pattern used in AWS and GCP collectors. Preparing for new releases with Docker build fixes. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Raman Damayeu <rdamayeu@provectus.com> Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 62fbd71 commit 86e9047

File tree

7 files changed

+13
-5
lines changed

7 files changed

+13
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "0.1.17"
1+
VERSION = "0.1.18"

odd-collector-aws/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "odd-collector-aws"
3-
version = "0.1.17"
3+
version = "0.1.18"
44
description = "ODD Collector for AWS"
55
license = "Apache-2.0"
66
authors = ["Open Data Discovery <pypi@opendatadiscovery.org>"]
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
def get_version() -> str:
2+
try:
3+
from odd_collector_azure.__version__ import VERSION
4+
5+
return VERSION
6+
except Exception:
7+
return "-"
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
VERSION = "0.1.7"

odd-collector-azure/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "odd-collector-azure"
3-
version = "0.1.6"
3+
version = "0.1.7"
44
description = "ODD Collector for Azure"
55
license = "Apache-2.0"
66
authors = ["Open Data Discovery <pypi@opendatadiscovery.org>"]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "0.1.5"
1+
VERSION = "0.1.6"

odd-collector-gcp/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "odd-collector-gcp"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
description = "ODD Collector for GCP"
55
license = "Apache-2.0"
66
authors = ["Open Data Discovery <pypi@opendatadiscovery.org>"]

0 commit comments

Comments
 (0)