Skip to content

Commit

Permalink
Prepare new release (1.2.1-b2) and update version number and current …
Browse files Browse the repository at this point in the history
…year
  • Loading branch information
javiquinte committed Apr 1, 2020
1 parent ef3c1e1 commit ab7fe40
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion data/updateAll.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
any later version.
:Copyright:
2014-2019 Javier Quinteros, Deutsches GFZ Potsdam <javier@gfz-potsdam.de>
2014-2020 Javier Quinteros, Deutsches GFZ Potsdam <javier@gfz-potsdam.de>
:License:
GPLv3
:Platform:
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
# The short X.Y version.
version = '1.2'
# The full version, including alpha/beta/rc tags.
release = '1.2.1-b1'
release = '1.2.1-b2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion doc/userdoc.rst
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ Always check your web server log files (e.g. for Apache: ``access_log`` and
If you visit http://localhost/eidaws/routing/1/version on your machine
you should see the version information of the deployed service ::

1.2.1-b1
1.2.1-b2

If this information cannot be retrieved, the installation was not successful.
If this **do** show up, check that the information there looks correct.
Expand Down
2 changes: 1 addition & 1 deletion routeutils/routing.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
any later version.
:Copyright:
2014-2019 Javier Quinteros, Deutsches GFZ Potsdam <javier@gfz-potsdam.de>
2014-2020 Javier Quinteros, Deutsches GFZ Potsdam <javier@gfz-potsdam.de>
:License:
GPLv3
:Platform:
Expand Down
2 changes: 1 addition & 1 deletion routeutils/unittestTools.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
any later version.
:Copyright:
2014-2019 Javier Quinteros, Deutsches GFZ Potsdam <javier@gfz-potsdam.de>
2014-2020 Javier Quinteros, Deutsches GFZ Potsdam <javier@gfz-potsdam.de>
:License:
GPLv3
:Platform:
Expand Down
2 changes: 1 addition & 1 deletion routeutils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
any later version.
:Copyright:
2014-2019 Javier Quinteros, Deutsches GFZ Potsdam <javier@gfz-potsdam.de>
2014-2020 Javier Quinteros, Deutsches GFZ Potsdam <javier@gfz-potsdam.de>
:License:
GPLv3
:Platform:
Expand Down
2 changes: 1 addition & 1 deletion routeutils/wsgicomm.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
any later version.
:Copyright:
2014-2019 Javier Quinteros, Deutsches GFZ Potsdam <javier@gfz-potsdam.de>
2014-2020 Javier Quinteros, Deutsches GFZ Potsdam <javier@gfz-potsdam.de>
:License:
GPLv3
:Platform:
Expand Down
4 changes: 2 additions & 2 deletions routing.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
any later version.
:Copyright:
2014-2019 Javier Quinteros, Deutsches GFZ Potsdam <javier@gfz-potsdam.de>
2014-2020 Javier Quinteros, Deutsches GFZ Potsdam <javier@gfz-potsdam.de>
:License:
GPLv3
:Platform:
Expand Down Expand Up @@ -437,7 +437,7 @@ def application(environ, start_response):
start_response)

elif fname == 'version':
text = "1.2.1-b1"
text = "1.2.1-b2"
return send_plain_response('200 OK', text, start_response)

elif fname == 'info':
Expand Down
2 changes: 1 addition & 1 deletion routing.wsgi
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# Routing Service
#
# 2014-2019 Javier Quinteros, Deutsches GFZ Potsdam <javier@gfz-potsdam.de>
# 2014-2020 Javier Quinteros, Deutsches GFZ Potsdam <javier@gfz-potsdam.de>
#
# ----------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion test/testRoute.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
any later version.
:Copyright:
2014-2019 Javier Quinteros, Deutsches GFZ Potsdam <javier@gfz-potsdam.de>
2014-2020 Javier Quinteros, Deutsches GFZ Potsdam <javier@gfz-potsdam.de>
:License:
GPLv3
:Platform:
Expand Down
4 changes: 2 additions & 2 deletions test/testService.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
any later version.
:Copyright:
2014-2019 Javier Quinteros, Deutsches GFZ Potsdam <javier@gfz-potsdam.de>
2014-2020 Javier Quinteros, Deutsches GFZ Potsdam <javier@gfz-potsdam.de>
:License:
GPLv3
:Platform:
Expand Down Expand Up @@ -416,7 +416,7 @@ def test_version(self):
msg = 'Components of the version number seem not to be integers.'
self.assertEqual(1, 0, msg)
# Check for exact version
self.assertEqual(components, [1, 2, 0], 'Version is not 1.2.0 !')
self.assertEqual(components, [1, 2, 1], 'Version is not 1.2.1 !')

def testDS_VirtualNetwork(self):
"""Dataselect _GEALL.*.*.* ."""
Expand Down

0 comments on commit ab7fe40

Please sign in to comment.