Skip to content

Commit

Permalink
Prepare the release
Browse files Browse the repository at this point in the history
  • Loading branch information
scmmmh committed Aug 25, 2023
1 parent a8c1b82 commit 5adbdd5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Dev
## 0.9.0

* **New**: Add an indicator when a frontend reload is required
* **Chore**: Update all dependencies
Expand Down
2 changes: 1 addition & 1 deletion museum_map/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.8.2"
__version__ = "0.9.0"
2 changes: 1 addition & 1 deletion museum_map/server/frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "frontend",
"private": true,
"version": "0.0.0",
"version": "0.9.0",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion museum_map/server/frontend/src/store/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export async function fetchStatus() {
}

export const isUpdatable = derived(status, (status) => {
return status !== null && status.version !== '0.8.2';
return status !== null && status.version !== '0.9.0';
});

export const config = writable(null as JsonApiObject);
Expand Down
2 changes: 1 addition & 1 deletion prepare_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import re
from typing import List

VERSION = "0.8.2"
VERSION = "0.9.0"


def readlines(filename: str) -> list[str]:
Expand Down

0 comments on commit 5adbdd5

Please sign in to comment.