Skip to content

Commit cedcd30

Browse files
committed
Release v4.1.0
1 parent b49330a commit cedcd30

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

CHANGELOG.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,18 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
A list of unreleased changes can be found [here](https://github.com/treee111/wahooMapsCreator/compare/v4.0.2...HEAD).
7+
A list of unreleased changes can be found [here](https://github.com/treee111/wahooMapsCreator/compare/v4.1.0...HEAD).
8+
9+
<a name="4.1.0"></a>
10+
## [4.1.0] - 2023-07-11
11+
### Features
12+
- Include amenity/shelter and tourism/alpine_hut ([#206](https://github.com/treee111/wahooMapsCreator/issues/206)) [`b8f4d16`](https://github.com/treee111/wahooMapsCreator/commit/b8f4d1635175f680aa16044088568ca3efb6aada)
13+
14+
### Bug Fixes
15+
- Use process.run instead of process.Popen to avoid deadlock ([#208](https://github.com/treee111/wahooMapsCreator/issues/208)) [`5e29dc1`](https://github.com/treee111/wahooMapsCreator/commit/5e29dc1ede9138c7b4976507977b41c5a9a83d89)
16+
- Search for existing elevation data based on requested type [`b49330a`](https://github.com/treee111/wahooMapsCreator/commit/b49330a78acb80b9d0534a9db2fcdb4ddcfdad21)
17+
- Log calculation of border countries based on argument [`b6fd62d`](https://github.com/treee111/wahooMapsCreator/commit/b6fd62d5414b154527b14a25796e94d0b9be1de2)
18+
819

920
<a name="4.0.2"></a>
1021
## [4.0.2] - 2023-05-06
@@ -57,12 +68,12 @@ Processing is now only based on Geofabrik .json file which is downloaded both fo
5768
Input should now be in Geofabrik style. The hardcoded translation to geofabrik countries has been removed.
5869
The size of generated maps for X/Y coordinates should remain exactly the same as before. The size of generated maps for countries should roughly be the same as before.
5970

60-
You need to create a new Anaconda environment with Python v3.10 for this version. These are the steps:
71+
You need to create a new Anaconda environment with Python v3.11 for this versino. These are the steps:
6172
1. Remove existing environment:
6273
`conda env remove -n gdal-user`
6374
2. Create new environment and install wahoomc:
6475
```
65-
conda create -n gdal-user python=3.10 geojson=2.5 gdal=3.6 requests=2.28 shapely=1.8 bs4=4.11 lxml=4.9 matplotlib=3.4.3 pip --channel conda-forge --override-channels
76+
conda create -n gdal-user python=3.11 geojson=2.5 gdal=3.6 pip --channel conda-forge --override-channels
6677
conda activate gdal-user
6778
pip install wahoomc
6879
```
@@ -434,6 +445,7 @@ wahooMapsCreator can now be used much quicker and easier!
434445
- Windows: `tooling_windows/Windows-Wahoo-Map-Creator-Osmosis/wahoo-map-creator-osmosis.py`
435446

436447

448+
[4.1.0]: https://github.com/treee111/wahooMapsCreator/compare/v4.0.2...v4.1.0
437449
[4.0.2]: https://github.com/treee111/wahooMapsCreator/compare/v4.0.1...v4.0.2
438450
[4.0.1]: https://github.com/treee111/wahooMapsCreator/compare/v4.0.0...v4.0.1
439451
[4.0.0]: https://github.com/treee111/wahooMapsCreator/compare/v3.2.0...v4.0.0

conda_env/gdal-user.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ dependencies:
1010
- matplotlib=3.4.3
1111
- pip
1212
- pip:
13-
- wahoomc==4.0.2
13+
- wahoomc==4.1.0

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = wahoomc
3-
version = 4.0.2
3+
version = 4.1.0
44
author = Benjamin Kreuscher
55
author_email = benni.kreuscher@gmail.com
66
description = Create maps for your Wahoo bike computer based on latest OSM maps

wahoomc/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
TOOLING_WIN_DIR = os.path.join(WAHOO_MC_DIR, 'tooling_win')
2727
# location of repo / python installation - not used
2828
ROOT_DIR = os.path.abspath(os.path.join(os.path.dirname(__file__), os.pardir))
29-
VERSION = '4.0.2'
29+
VERSION = '4.1.0'
3030

3131

3232
block_download = ['dach', 'alps', 'britain-and-ireland', 'south-africa-and-lesotho',

0 commit comments

Comments
 (0)