Skip to content

Commit

Permalink
chore: upgrade version to 0.14.1 (#2004)
Browse files Browse the repository at this point in the history
  • Loading branch information
boojack committed Jul 22, 2023
1 parent 55975a4 commit 4231ec5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions server/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ import (

// Version is the service current released version.
// Semantic versioning: https://semver.org/
var Version = "0.14.0"
var Version = "0.14.1"

// DevVersion is the service current development version.
var DevVersion = "0.14.0"
var DevVersion = "0.14.1"

func GetCurrentVersion(mode string) string {
if mode == "dev" || mode == "demo" {
Expand Down
4 changes: 2 additions & 2 deletions web/src/pages/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import MemoList from "@/components/MemoList";
import MobileHeader from "@/components/MobileHeader";
import HomeSidebar from "@/components/HomeSidebar";

function Home() {
const Home = () => {
const t = useTranslate();
const globalStore = useGlobalStore();
const userStore = useUserStore();
Expand Down Expand Up @@ -43,6 +43,6 @@ function Home() {
<HomeSidebar />
</div>
);
}
};

export default Home;
2 changes: 1 addition & 1 deletion web/src/router/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const router = createBrowserRouter([
},
},
{
path: "/u/:username",
path: "u/:username",
element: <Explore />,
loader: async () => {
await initialGlobalStateLoader();
Expand Down

0 comments on commit 4231ec5

Please sign in to comment.