Skip to content

Commit

Permalink
Merge pull request #1090 from gboeing/release
Browse files Browse the repository at this point in the history
release v1.8.0
  • Loading branch information
gboeing authored Nov 30, 2023
2 parents 4209c12 + a93a13d commit 41c26f3
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## 1.8.0 (2023-11-30)

- formally support Python 3.12 (#1082)
- fix Windows-specific character encoding issue when reading XML files (#1084)
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__ = "1.7.1"
__version__ = "1.8.0"
2 changes: 1 addition & 1 deletion tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ All PRs trigger continuous integration tests via GitHub Actions. See the [config

## Releases

To package and release a new version, update `CHANGELOG.md` and edit the version number in `osmnx/_version.py`. If needed, update `LICENSE.txt` dates and `pyproject.toml` dependency versions. Then change directories to the repository's root and run:
To package and release a new version, update `CHANGELOG.md` and edit the version number in `osmnx/_version.py`. If necessary, update the dates in `LICENSE.txt` and `docs/source/conf.py` and the dependency versions in `pyproject.toml`. Then change directories to the repository's root and run:

```
bash ./tests/packaging.sh
Expand Down
6 changes: 6 additions & 0 deletions tests/packaging.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ conda deactivate
conda activate ox
mamba update conda-smithy --yes --no-banner

# test the docs build and validate that all their links are live
rm -rf ./docs/build
make -C ./docs html
python -m sphinx -b linkcheck docs/source build/linkcheck
rm -rf ./docs/build

# get the current package version number
VERSION=$(hatch version)

Expand Down

0 comments on commit 41c26f3

Please sign in to comment.