Skip to content

Commit c96ea95

Browse files
authored
Change version to 0.5.0 (#121)
0.4.2 sounds too 2.4-like, or 2024-like, not doing that bumping version to 0.5.0 instead Issue: AAP-38426
1 parent 0c34a7c commit c96ea95

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757

5858
- relax boto3 requirement so it builds with any version available
5959

60-
## 0.4.2
60+
## 0.5.0
6161

6262
- add indirectly managed nodes support, sheets
6363
- add scope (hosts across all inventories) support, sheets

metrics_utility/automation_controller_billing/collectors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def config(since, **kwargs):
129129
'logging_aggregators': settings.LOG_AGGREGATOR_LOGGERS,
130130
'external_logger_enabled': settings.LOG_AGGREGATOR_ENABLED,
131131
'external_logger_type': getattr(settings, 'LOG_AGGREGATOR_TYPE', None),
132-
'metrics_utility_version': '0.4.2', # TODO read from setup.cfg
132+
'metrics_utility_version': '0.5.0', # TODO read from setup.cfg
133133
'billing_provider_params': {}, # Is being overwritten in collector.gather by set ENV VARS
134134
}
135135

metrics_utility/management_utility.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def execute(self):
4848
# 'django-admin --help' to work, for backwards compatibility.
4949
elif subcommand == 'version' or self.argv[1:] == ['--version']:
5050
# sys.stdout.write(django.get_version() + "\n")
51-
sys.stdout.write('0.4.2' + '\n')
51+
sys.stdout.write('0.5.0' + '\n')
5252
elif self.argv[1:] in (['--help'], ['-h']):
5353
sys.stdout.write(self.main_help_text() + '\n')
5454
else:

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = metrics_utility
33
author = Red Hat
44
author_email = info@ansible.com
5-
version = 0.4.2
5+
version = 0.5.0
66

77
[options]
88
packages = find:

0 commit comments

Comments
 (0)