Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release 3.4.0 #30

Merged
merged 11 commits into from
May 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,12 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Configure Python
uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: Lint & Style Check
run: |
python -m pip install -r dev-requirements.txt
pre-commit run --all-files --show-diff-on-failure

- uses: pypa/cibuildwheel@v2.12.1
env:
CIBW_BUILD: cp37*
MACOSX_DEPLOYMENT_TARGET: 10.15
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repos:
language_version: python3
# temp exlude osrm: black fails to reformat for some reason
args: [valhalla]
- repo: https://gitlab.com/pycqa/flake8
- repo: https://github.com/pycqa/flake8
rev: 5.0.4 # pick a git hash / tag to point to
hooks:
- id: flake8
20 changes: 12 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,23 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

## Unreleased

_Valhalla version 3.3.0_
_Valhalla version [3.4.0](https://github.com/valhalla/valhalla/releases/tag/3.4.0)_

## [3.2.0](https://pypi.org/project/pyvalhalla/3.2.0/) - 2023-05-16

_Valhalla version [3.4.0](https://github.com/valhalla/valhalla/releases/tag/3.4.0)_

## [3.1.1](https://pypi.org/project/pyvalhalla/3.1.1/) - 2023-04-16

_Valhalla version 3.3.0_
_Valhalla version [3.3.0](https://github.com/valhalla/valhalla/releases/tag/3.3.0)_

### FIXED

- `Actor.optimized_route` called Valhalla's `_Actor.route`

## [3.1.0](https://pypi.org/project/pyvalhalla/3.1.0/) - 2023-04-13

_Valhalla version 3.3.0_
_Valhalla version [3.3.0](https://github.com/valhalla/valhalla/releases/tag/3.3.0)_

### CHANGED

Expand All @@ -32,38 +36,38 @@ _Valhalla version 3.3.0_

## [3.0.4](https://pypi.org/project/pyvalhalla/3.0.4/) - 2023-04-12

_Valhalla version 3.1.4_
_Valhalla version [3.1.4](https://github.com/valhalla/valhalla/releases/tag/3.1.4)_

### CHANGED

- added optimized to Python wrapper [#27](https://github.com/gis-ops/pyvalhalla/pull/27)

## [3.0.3](https://pypi.org/project/pyvalhalla/3.0.3/) - 2022-09-11

_Valhalla version 3.1.4_
_Valhalla version [3.1.4](https://github.com/valhalla/valhalla/releases/tag/3.1.4)_

### CHANGED

- link protobuf statically for Linux so apps like QGIS with embedded python interpreters can use the PyPI versions

## [3.0.2](https://pypi.org/project/pyvalhalla/3.0.2/) - 2022-03-10

_Valhalla version 3.1.4_
_Valhalla version [3.1.4](https://github.com/valhalla/valhalla/releases/tag/3.1.4)_

### ADDED

- `valhalla.get_help()` to return valhalla_build_config help dictionary

## [3.0.1](https://pypi.org/project/pyvalhalla/3.0.1/) - 2022-03-08

_Valhalla version 3.1.4_
_Valhalla version [3.1.4](https://github.com/valhalla/valhalla/releases/tag/3.1.4)_

### Fixed

- Actor wouldn't initialize if either tile_dir OR tile_extract wasn't present; we only need of one them

## [3.0.0](https://pypi.org/project/pyvalhalla/3.0.0/) - 2022-03-08

_Valhalla version 3.1.4_
_Valhalla version [3.1.4](https://github.com/valhalla/valhalla/releases/tag/3.1.4)_

### First release
Loading