Skip to content

Commit 62fc4d1

Browse files
committed
oslcquery: print version
1 parent efe6b03 commit 62fc4d1

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.11.1
2+
current_version = 0.11.3
33
commit = True
44
tag = True
55

README.md

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

99
SPDX-License-Identifier: MIT
1010

11-
version="0.11.1"
11+
version="0.11.3"
1212

1313

1414
Introduction

elmclient/__meta__.py

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

1010
app = 'elmoslcquery'
1111
description = 'Commandline OSLC query for ELM'
12-
version = '0.11.1'
12+
version = '0.11.3'
1313
license = 'MIT'
1414
author_name = 'Ian Barnard'
1515
author_mail = '[email protected]'

elmclient/examples/oslcquery.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
import requests
2626
import urllib.parse
2727

28+
from elmclient import __meta__
2829
from elmclient import rdfxml
2930
from elmclient import server
3031
from elmclient import utils
@@ -52,6 +53,7 @@ def ensure_select(select,requireds):
5253
############################################################################
5354

5455
def do_oslc_query(inputargs=None):
56+
print( f"Version {__meta__.version}" )
5557
inputargs = inputargs or sys.argv[1:]
5658

5759
# get some defaults from the environment (which can be overridden on the commandline or the saved obfuscated credentials)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# This call to setup() does all the work
1717
setup(
1818
name="elmclient",
19-
version="0.11.1",
19+
version="0.11.3",
2020
description="Python client for ELM with examples of OSLC Query, ReqIF import/export, Reportable REST, and more",
2121
long_description=README,
2222
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)