summaryrefslogtreecommitdiffstats
path: root/common/version.py
diff options
context:
space:
mode:
Diffstat (limited to 'common/version.py')
-rw-r--r--common/version.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/common/version.py b/common/version.py
index 281c880..792f69b 100644
--- a/common/version.py
+++ b/common/version.py
@@ -1,7 +1,7 @@
#
# RTEMS Documentation Project (http://www.rtems.org/)
# Copyright 2019, 2020 Chris Johns (chrisj@rtems.org)
-# Copyright (C) 2019 embedded brains GmbH
+# Copyright (C) 2019 embedded brains GmbH & Co. KG
# All rights reserved.
#
# This file is part of the RTEMS Documentation package in 'rtems-docs'.
@@ -111,6 +111,9 @@ def _pretty_day(ctx, date):
def get(ctx, rtems_major_version):
global _version
+ global _major
+ global _minor
+ global _revision
global _date
global _released
version = _version
@@ -184,7 +187,7 @@ def minor():
return _minor
def revision():
- return revision
+ return _revision
def date():
return _date