1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-19 04:49:37 +02:00

chore: update version to v0.10.0 across Dockerfiles, package.json, and configuration files; add changelog for v0.10.0 release

This commit is contained in:
Sean Morley 2025-06-07 11:14:27 -04:00
parent 20cdc2405f
commit 19baf6ab35
9 changed files with 148 additions and 14 deletions

View file

@ -3,11 +3,11 @@ FROM node:22-alpine AS external-website
# Metadata labels for the AdventureLog image
LABEL maintainer="Sean Morley" \
version="v0.9.0" \
version="v0.10.0" \
description="AdventureLog — the ultimate self-hosted travel companion." \
org.opencontainers.image.title="AdventureLog" \
org.opencontainers.image.description="AdventureLog is a self-hosted travel companion that helps you plan, track, and share your adventures." \
org.opencontainers.image.version="v0.9.0" \
org.opencontainers.image.version="v0.10.0" \
org.opencontainers.image.authors="Sean Morley" \
org.opencontainers.image.url="https://raw.githubusercontent.com/seanmorley15/AdventureLog/refs/heads/main/brand/banner.png" \
org.opencontainers.image.source="https://github.com/seanmorley15/AdventureLog" \

View file

@ -1,6 +1,6 @@
{
"name": "adventurelog-frontend",
"version": "0.9.0",
"version": "0.10.0",
"scripts": {
"dev": "vite dev",
"django": "cd .. && cd backend/server && python3 manage.py runserver",

View file

@ -1,4 +1,4 @@
export let appVersion = 'v0.9.0';
export let versionChangelog = 'https://github.com/seanmorley15/AdventureLog/releases/tag/v0.9.0';
export let appVersion = 'v0.10.0';
export let versionChangelog = 'https://github.com/seanmorley15/AdventureLog/releases/tag/v0.10.0';
export let appTitle = 'AdventureLog';
export let copyrightYear = '2023-2025';