meta: bump version 2.1.0 -> 2.1.1

This commit is contained in:
Mark Joshwel 2023-09-19 14:46:58 +00:00
parent 106cea1ed5
commit db2014c567
3 changed files with 7 additions and 7 deletions

View file

@ -20,7 +20,7 @@ to iOS Shortcuts-like shareable text.
```text ```text
$ surplus 9R3J+R9 Singapore $ surplus 9R3J+R9 Singapore
surplus version 2.1.0 surplus version 2.1.1
Thomson Plaza Thomson Plaza
301 Upper Thomson Road 301 Upper Thomson Road
Sin Ming, Bishan Sin Ming, Bishan
@ -260,7 +260,7 @@ of incorrect outputs.
```text ```text
$ s+ --debug 8QJF+RP Singapore $ s+ --debug 8QJF+RP Singapore
surplus version 2.1.0, debug mode (latest@future, Tue 05 Sep 2023 23:38:59 +0800) surplus version 2.1.1, debug mode (latest@future, Tue 05 Sep 2023 23:38:59 +0800)
debug: parse_query: behaviour.query=['8QJF+RP', 'Singapore'] debug: parse_query: behaviour.query=['8QJF+RP', 'Singapore']
debug: _match_plus_code: portion_plus_code='8QJF+RP', portion_locality='Singapore' debug: _match_plus_code: portion_plus_code='8QJF+RP', portion_locality='Singapore'
debug: cli: query=Result(value=LocalCodeQuery(code='8QJF+RP', locality='Singapore'), error=None) debug: cli: query=Result(value=LocalCodeQuery(code='8QJF+RP', locality='Singapore'), error=None)
@ -797,7 +797,7 @@ attributes
> [!IMPORTANT] > [!IMPORTANT]
> this has replaced the now deprecated default geocoding functions, `default_geocoder()` > this has replaced the now deprecated default geocoding functions, `default_geocoder()`
> and `default_reverser()`, in surplus 2.1.0 and later. > and `default_reverser()`, in surplus 2.1 and later.
see [SurplusGeocoderProtocol](#surplusgeocoderprotocol) and see [SurplusGeocoderProtocol](#surplusgeocoderprotocol) and
[SurplusReverserProtocol](#surplusreverserprotocol) for more information how to [SurplusReverserProtocol](#surplusreverserprotocol) for more information how to
@ -1288,7 +1288,7 @@ it contains the following, in order, alongside an example:
1. `version` - the surplus version alongside a suffix, if any 1. `version` - the surplus version alongside a suffix, if any
```text ```text
2.1.0-local 2.1.1-local
``` ```
2. `system_info` - generic machine and operating system information 2. `system_info` - generic machine and operating system information
@ -1312,7 +1312,7 @@ it contains the following, in order, alongside an example:
after hashing, this string becomes a 12 character hexadecimal string, as shown below: after hashing, this string becomes a 12 character hexadecimal string, as shown below:
```text ```text
surplus/2.1.0-local (1fdbfa0b0cfb) surplus/2.1.1-local (1fdbfa0b0cfb)
^^^^^^^^^^^^ ^^^^^^^^^^^^
this is the hashed result of unique_info this is the hashed result of unique_info
``` ```

View file

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "surplus" name = "surplus"
version = "2.1.0" version = "2.1.1"
description = "Python script to convert Google Maps Plus Codes to iOS Shortcuts-like shareable text." description = "Python script to convert Google Maps Plus Codes to iOS Shortcuts-like shareable text."
authors = ["Mark Joshwel <mark@joshwel.co>"] authors = ["Mark Joshwel <mark@joshwel.co>"]
license = "Unlicense" license = "Unlicense"

View file

@ -68,7 +68,7 @@ from pluscodes.openlocationcode import ( # type: ignore # isort: skip
# constants # constants
VERSION: Final[tuple[int, int, int]] = (2, 1, 0) VERSION: Final[tuple[int, int, int]] = (2, 1, 1)
VERSION_SUFFIX: Final[str] = "-local" VERSION_SUFFIX: Final[str] = "-local"
BUILD_BRANCH: Final[str] = "future" BUILD_BRANCH: Final[str] = "future"
BUILD_COMMIT: Final[str] = "latest" BUILD_COMMIT: Final[str] = "latest"