Skip to content

Commit ebe0079

Browse files
committed
chore: Update application version to 1.2.1 across all modules
1 parent e8bdb44 commit ebe0079

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def _setup_api(self):
159159
# Initialize Flask-RESTX
160160
self.api = Api(
161161
self.app,
162-
version='1.2.0',
162+
version='1.2.1',
163163
title='CertMate API',
164164
description='SSL Certificate Management API',
165165
doc='/docs/',

modules/api/resources.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def get(self):
4141

4242
return {
4343
'status': 'healthy',
44-
'version': '1.2.0',
44+
'version': '1.2.1',
4545
'services': {
4646
'settings': 'ok' if settings else 'error',
4747
'cache': 'ok',

modules/core/metrics.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ def __init__(self):
236236
try:
237237
# Try the newer way first
238238
certmate_info.info({
239-
'version': '1.2.0',
239+
'version': '1.2.1',
240240
'python_version': f"{sys.version_info.major}.{sys.version_info.minor}.{sys.version_info.micro}"
241241
})
242242
except AttributeError as e:
@@ -246,7 +246,7 @@ def __init__(self):
246246
global application_version
247247
application_version = Gauge('certmate_version_info', 'CertMate version information', ['version', 'python_version'])
248248
application_version.labels(
249-
version='1.2.0',
249+
version='1.2.1',
250250
python_version=f"{sys.version_info.major}.{sys.version_info.minor}.{sys.version_info.micro}"
251251
).set(1)
252252
except Exception as fallback_error:

modules/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@ def _ensure_certificate_metadata(self):
544544
"domain": domain,
545545
"dns_provider": dns_provider,
546546
"created_at": "unknown",
547-
"version": "1.2.0",
547+
"version": "1.2.1",
548548
"migrated": True
549549
}
550550

modules/web/routes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def health_check():
109109
settings = settings_manager.load_settings()
110110
return jsonify({
111111
'status': 'healthy',
112-
'version': '1.2.0',
112+
'version': '1.2.1',
113113
'timestamp': str(datetime.now())
114114
})
115115
except Exception as e:

0 commit comments

Comments
 (0)