Skip to content

Commit 33e3e21

Browse files
committed
Update release number to 1.2.3
1 parent d5d82db commit 33e3e21

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
# The short X.Y version.
5858
version = '1.2'
5959
# The full version, including alpha/beta/rc tags.
60-
release = '1.2.2'
60+
release = '1.2.3'
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
6363
# for a list of supported languages.

doc/userdoc.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ Always check your web server log files (e.g. for Apache: ``access_log`` and
286286
If you visit http://localhost/eidaws/routing/1/version on your machine
287287
you should see the version information of the deployed service ::
288288

289-
1.2.2
289+
1.2.3
290290

291291
If this information cannot be retrieved, the installation was not successful.
292292
If this **do** show up, check that the information there looks correct.

routeutils/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
from typing import Tuple
3535

3636

37-
__version__ = "1.2.2"
37+
__version__ = "1.2.3"
3838

3939

4040
class TW(namedtuple('TW', ['start', 'end'])):

routing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ def application(environ, start_response):
447447
start_response)
448448

449449
elif fname == 'version':
450-
text = "1.2.2"
450+
text = "1.2.3"
451451
return send_plain_response('200 OK', text, start_response)
452452

453453
elif fname == 'info':

swagger.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
openapi: 3.0.0
22

33
info:
4-
version: 1.2.2
4+
version: 1.2.3
55
title: Routing Service API
66
description: API specification of the Routing Service
77
license:

test/testService.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ def test_version(self):
409409
msg = 'Components of the version number seem not to be integers.'
410410
self.assertEqual(1, 0, msg)
411411
# Check for exact version
412-
self.assertEqual(components, [1, 2, 2], 'Version is not 1.2.2 !')
412+
self.assertEqual(components, [1, 2, 3], 'Version is not 1.2.3 !')
413413

414414
def test_issue_63(self):
415415
"""Query without start and endtime via POST method."""

0 commit comments

Comments
 (0)