Skip to content

Commit

Permalink
v0.9.0 (#59)
Browse files Browse the repository at this point in the history
* Release update UX fix

* Prepare the release
  • Loading branch information
scmmmh authored Aug 25, 2023
1 parent 3daf913 commit f017000
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 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/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<Route path="/room/:id"><Room /></Route>

{#if $isUpdatable}
<div class="absolute left-0 bottom-0 pb-2 pl-2">
<div class="absolute left-0 bottom-0 pb-2 pl-2 z-20">
<a
href="./"
class="block text-xs bg-blue-800 px-4 py-2 rounded-lg hover:underline focus:underline shadow"
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 f017000

Please sign in to comment.