Release: 0.8.1
This commit is contained in:
parent
6d35001f8d
commit
4940679201
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,5 +1,15 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.8.1
|
||||||
|
|
||||||
|
### Improvements
|
||||||
|
|
||||||
|
* The zone (urban/rural) is now also exported with the events GeoJson export.
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* Update to a current version of gpstime (python dependency) fix portal startup.
|
||||||
|
|
||||||
## 0.8.0
|
## 0.8.0
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
|
11
UPGRADING.md
11
UPGRADING.md
|
@ -5,6 +5,17 @@ explicitly. Their general usage is described in the [README](./README.md) (for
|
||||||
development) and [docs/production-deployment.md](docs/production-deployment.md) (for production).
|
development) and [docs/production-deployment.md](docs/production-deployment.md) (for production).
|
||||||
|
|
||||||
|
|
||||||
|
## 0.8.1
|
||||||
|
|
||||||
|
- Get the release in your source folder (``git pull; git checkout 0.8.0`` and update submodules ``git submodule update --recursive``)
|
||||||
|
- Rebuild images ``docker-compose build``
|
||||||
|
- No database upgrade is required, but tile functions need an update:
|
||||||
|
```bash
|
||||||
|
docker-compose run --rm portal tools/prepare_sql_tiles.py
|
||||||
|
```
|
||||||
|
- Start your portal and worker services. ``docker-compose up -d worker portal``
|
||||||
|
|
||||||
|
|
||||||
## 0.8.0
|
## 0.8.0
|
||||||
Upgrade to `0.7.x` first. See below for details. Then follow these steps:
|
Upgrade to `0.7.x` first. See below for details. Then follow these steps:
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
__version__ = "0.8.0"
|
__version__ = "0.8.1"
|
||||||
|
|
|
@ -4,7 +4,7 @@ tileset:
|
||||||
- layers/obs_events/obs_events.yaml
|
- layers/obs_events/obs_events.yaml
|
||||||
- layers/obs_roads/obs_roads.yaml
|
- layers/obs_roads/obs_roads.yaml
|
||||||
- layers/obs_regions/obs_regions.yaml
|
- layers/obs_regions/obs_regions.yaml
|
||||||
version: 0.8.0
|
version: 0.8.1
|
||||||
id: openbikesensor
|
id: openbikesensor
|
||||||
description: >
|
description: >
|
||||||
A tileset for OpenBikeSensor data -- https://openbikesensor.org.
|
A tileset for OpenBikeSensor data -- https://openbikesensor.org.
|
||||||
|
|
Loading…
Reference in a new issue