From f1cba67771b6f06f9c24052fd55cbbedde027935 Mon Sep 17 00:00:00 2001 From: Geoff Boeing Date: Fri, 28 Jul 2023 10:16:13 -0700 Subject: [PATCH 1/3] Update pyproject.toml --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1862bdac1..92c3a14cc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -64,8 +64,8 @@ cache-dir = "~/.cache/ruff" exclude = ["build/*"] ignore = [ "PERF401", # ignore "use a list comprehension to create a transformed list" - "PLR091", # ignore "unnecessary `else` after `return` statement" - "RET505", # ignore complexity checks (we check mccabe elsewhere) + "PLR091", # ignore complexity checks (we check mccabe elsewhere) + "RET505", # ignore "unnecessary branch after return statement" ] line-length = 110 # black line length + 10% select = [ From 5126d29ff0787cecc1956e82b17887e1896d77ff Mon Sep 17 00:00:00 2001 From: Geoff Boeing Date: Fri, 28 Jul 2023 10:16:46 -0700 Subject: [PATCH 2/3] bump version to 1.6.0 --- osmnx/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osmnx/_version.py b/osmnx/_version.py index 20ea95133..344d98292 100644 --- a/osmnx/_version.py +++ b/osmnx/_version.py @@ -1,3 +1,3 @@ """OSMnx package version information.""" -__version__ = "1.6.0-dev" +__version__ = "1.6.0" From 594ada07a92b59e474041bd82b7f76ce53469ca7 Mon Sep 17 00:00:00 2001 From: Geoff Boeing Date: Fri, 28 Jul 2023 10:20:12 -0700 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb011cd3f..eae713f6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,12 @@ # Changelog -## 1.6.0 (Unreleased) +## 1.6.0 (2023-07-28) - fix DNS resolution in Dask clusters (#1039) - improve memory efficiency during features GeoDataFrame creation (#1043) - handle the settings.cache_only_mode option in the features module (#1043) -- deprecate the buffer_dist and clean_periphery function parameters throughout (#1044) -- introduce more descriptive exceptions: ResponseStatusCodeError and GraphSimplificationError (#1041) +- deprecate the buffer_dist and clean_periphery function parameters throughout package (#1044) +- add more descriptive exceptions: ResponseStatusCodeError and GraphSimplificationError (#1041) - replace CacheOnlyModeInterrupt exception with CacheOnlyInterruptError exception (#1041) - replace EmptyOverpassResponse exception with InsufficientResponseError exception (#1041) - refactor elevation module (#1042 #1043)