prepare release v1.2 (2022-02-23)

This commit is contained in:
2022-02-23 14:21:23 +01:00
parent d718875d03
commit dc367000ba
9 changed files with 10 additions and 41 deletions

View File

@@ -1,5 +1,5 @@
#!/bin/bash
# Version: VVVVV
# Version: v1.2 (2022-02-23)
# get starting date
# find gdate or date command ( OSX: brew install coreutils)

View File

@@ -12,7 +12,7 @@
AJAX calls to the Nominatim service small, e. g. :
curl -s "https://fdsnws.geophysik.ruhr-uni-bochum.de/fdsnws/event/1/query?minlat=50&maxlat=54&minlon=3&maxlon=10&minmag=1" | mkGeolocationTable.py > geolocationTable.js
Version: VVVVV
Version: v1.2 (2022-02-23)
License
Copyright 2020-2021 Kasper D. Fischer <kasper.fischer@rub.de>
@@ -125,7 +125,7 @@ if __name__ == "__main__":
# parse arguments
import argparse
versionText = 'VVVVV'
versionText = 'v1.2 (2022-02-23)'
parser = argparse.ArgumentParser(
description='Reverse geocoding lookup of events in xml format (stdin).',
epilog=versionText)

View File

@@ -1,5 +1,5 @@
#!/bin/bash
# version: VVVVV
# version: v1.2 (2022-02-23)
function fail {
printf '%s\n' "$1" >&2 ## Send message to stderr.
exit "${2-1}" ## Return a code specified by $2, or 1 by default.