diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c815dd6..d03bd95b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# v0.19.2 +## Documentation +- Add CONTRIBUTING guidelines + +## Bug Fixes +- All photos from strava activities are now synced, instead of just the first one +- Shared trails are now displayed correctly in search results +- Fixes bug that caused trails to be indexed multiple times causing high server load +- Remaining likes are no correctly calculated when unliking a trail +- Fix waypoint creation from photos + # v0.19.1 ## Features diff --git a/docs/package-lock.json b/docs/package-lock.json index 7710e522..ec0980e6 100644 --- a/docs/package-lock.json +++ b/docs/package-lock.json @@ -1,12 +1,12 @@ { "name": "docs", - "version": "0.19.1", + "version": "0.19.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "docs", - "version": "0.19.1", + "version": "0.19.2", "dependencies": { "@astrojs/check": "^0.9.8", "@astrojs/node": "^10.1.1", diff --git a/docs/package.json b/docs/package.json index d0bb8872..bd2c93f8 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,7 +1,7 @@ { "name": "docs", "type": "module", - "version": "0.19.1", + "version": "0.19.2", "scripts": { "dev": "astro dev", "start": "astro dev", diff --git a/docs/src/content/docs/changelog.md b/docs/src/content/docs/changelog.md index 9c0ef912..b9a672a2 100644 --- a/docs/src/content/docs/changelog.md +++ b/docs/src/content/docs/changelog.md @@ -2,6 +2,17 @@ title: Changelog description: What changed in the last patch? --- +## v0.19.2 +### Documentation +- Add CONTRIBUTING guidelines + +### Bug Fixes +- All photos from strava activities are now synced, instead of just the first one +- Shared trails are now displayed correctly in search results +- Fixes bug that caused trails to be indexed multiple times causing high server load +- Remaining likes are no correctly calculated when unliking a trail +- Fix waypoint creation from photos + ## v0.19.1 ### Features diff --git a/web/package-lock.json b/web/package-lock.json index 8ceb99b4..0ac5403c 100644 --- a/web/package-lock.json +++ b/web/package-lock.json @@ -1,12 +1,12 @@ { "name": "wanderer", - "version": "0.19.1", + "version": "0.19.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "wanderer", - "version": "0.19.1", + "version": "0.19.2", "dependencies": { "@felte/validator-zod": "^1.0.18", "@fortawesome/fontawesome-free": "^7.1.0", diff --git a/web/package.json b/web/package.json index ac4767ab..c49f8417 100644 --- a/web/package.json +++ b/web/package.json @@ -1,6 +1,6 @@ { "name": "wanderer", - "version": "0.19.1", + "version": "0.19.2", "private": true, "scripts": { "dev": "vite dev",