Skip to content

Commit

Permalink
Merge pull request #1264 from gboeing/release
Browse files Browse the repository at this point in the history
version bump to 2.0.1
  • Loading branch information
gboeing authored Jan 1, 2025
2 parents 44d9892 + d4f0636 commit 2fdca29
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ labels: bug
body:
- type: markdown
attributes:
value: "Thanks for using OSMnx!"
value: Thanks for using OSMnx!

- type: checkboxes
id: contributing
Expand Down
5 changes: 3 additions & 2 deletions .github/ISSUE_TEMPLATE/feature_proposal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@ labels: enh
body:
- type: markdown
attributes:
value: "Thanks for using OSMnx!"
value: Thanks for using OSMnx!

- type: checkboxes
id: contributing
attributes:
label: Contributing guidelines
description: |
Before you proceed, read the [contributing guidelines](../blob/main/CONTRIBUTING.md)
Before you proceed, read the
[contributing guidelines](../blob/main/CONTRIBUTING.md)
regarding where to ask usage questions and how to propose a feature.
options:
- label: I understand the contributing guidelines
Expand Down
6 changes: 3 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
- package-ecosystem: github-actions
directory: /
schedule:
interval: "weekly"
interval: weekly
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,5 @@ jobs:
- name: Upload coverage report
uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
14 changes: 12 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,14 @@ repos:
rev: v1.35.1
hooks:
- id: yamllint
args: [--strict, -d, "{extends: relaxed, rules: {line-length: {max: 110}}}"]
args:
- --strict
- >
-d={extends: default, rules: {
document-start: disable,
line-length: {max: 110},
quoted-strings: {quote-type: single, required: only-when-needed},
truthy: {check-keys: false}}}
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.8.4
Expand All @@ -40,4 +47,7 @@ repos:
hooks:
- id: mypy
additional_dependencies:
[matplotlib, pandas-stubs, pytest, types-requests]
- matplotlib
- pandas-stubs
- pytest
- types-requests
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 2.0.1 (TBD)
## 2.0.1 (2025-01-01)

- fix error message when elevation module's optional dependencies are missing (#1250)
- update "walk" network_type to filter out ways whose sidewalks are mapped separately (#1254)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Boeing, G. (2024). Modeling and Analyzing Urban Networks and Amenities with OSMn

First read the [Getting Started](https://osmnx.readthedocs.io/en/stable/getting-started.html) guide for an introduction to the package and FAQ.

Then work through the OSMnx [Examples Gallery](https://github.com/gboeing/osmnx-examples) for step-by-step tutorials and sample code.
Then work through the [Examples Gallery](https://github.com/gboeing/osmnx-examples) for step-by-step tutorials and sample code.

## Installation

Expand Down
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Getting Started

First read the :doc:`getting-started` guide for an introduction to the package and FAQ.

Then work through the OSMnx `Examples Gallery`_ for step-by-step tutorials and sample code.
Then work through the `Examples Gallery`_ for step-by-step tutorials and sample code.

.. _Examples Gallery: https://github.com/gboeing/osmnx-examples

Expand Down
2 changes: 1 addition & 1 deletion osmnx/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""OSMnx package version information."""

__version__ = "2.0.1dev"
__version__ = "2.0.1"

0 comments on commit 2fdca29

Please sign in to comment.