Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
scmmmh committed Feb 2, 2024
1 parent 1edd98f commit e2a2152
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
## 1.0.0

* **New**: Implemented opt-in activity tracking
* **Update**: Updated the backend to use FastAPI
Expand Down
2 changes: 1 addition & 1 deletion museum_map/__about__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.9.1"
__version__ = "1.0.0"
__tables__ = {"groups", "users", "floors_items", "floor_topics", "rooms", "floors", "log_entries", "items"}
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.9.1",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion museum_map/server/frontend/src/Root.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<NotFoundRoute><Lobby /></NotFoundRoute>
</main>
<Research />
{#if $apiStatus.data.version !== "0.9.1"}
{#if $apiStatus.data.version !== "1.0.0"}
<Reload />
{/if}
{:else}
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

VERSION = "0.9.1"
VERSION = "1.0.0"


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

0 comments on commit e2a2152

Please sign in to comment.