Skip to content

Commit

Permalink
Merge pull request #17 from SheffieldSolar/issue#16
Browse files Browse the repository at this point in the history
Issue#16
  • Loading branch information
JamieTaylor-TUOS authored May 18, 2023
2 parents 8df6c60 + cc1dd50 commit 1fa322d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Geocode various geographical entities including postcodes and LLSOAs. Reverse-geocode to LLSOA or GSP/GNode.

*Latest Version: 0.12.0*
*Latest Version: 0.12.1*

## What is this repository for?

Expand Down Expand Up @@ -38,7 +38,7 @@ This will print the helper for the limited command line interface which provides
usage: geocode.py [-h] [--clear-cache] [--debug] [--setup SETUP [SETUP ...]]
[--load-cpo-zip </path/to/zip-file>] [--load-gmaps-key <gmaps-api-key>]
This is a command line interface (CLI) for the Geocode module version 0.12.0.
This is a command line interface (CLI) for the Geocode module version 0.12.1.
optional arguments:
-h, --help show this help message and exit
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = "Jamie Taylor"

# The full version, including alpha/beta/rc tags
release = "0.12.0"
release = "0.12.1"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion geocode/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ def _fetch_from_ons_api(url):
pages.append(page)
offset += record_count
else:
raise utils.GenericException("Encountered an error while extracting LLSOA data from ONS API.")
raise GenericException("Encountered an error while extracting LLSOA data from ONS API.")
return pages

def fetch_from_api(url):
Expand Down
2 changes: 1 addition & 1 deletion geocode/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.12.0"
__version__ = "0.12.1"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version="0.12.0",
version="0.12.1",

description="Geocode postcodes, addresses or LLSOA using the Code Point Open database and GMaps API.",
long_description=long_description.replace("\r", ""),
long_description_content_type="text/markdown",

# The project's main homepage.
url="https://github.com/SheffieldSolar/Geocode",
download_url="https://github.com/SheffieldSolar/Geocode/archive/refs/tags/0.12.0.tar.gz",
download_url="https://github.com/SheffieldSolar/Geocode/archive/refs/tags/0.12.1.tar.gz",

# Author details
author="Jamie Taylor",
Expand Down

0 comments on commit 1fa322d

Please sign in to comment.