chore: release v0.1.0 (#65)

* chore: update version `v0.1.0`

* fix: initial memo filter
pull/69/head
STEVEN 3 years ago committed by GitHub
parent d23262856e
commit 668276f0df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -30,7 +30,7 @@
## ⚓️ Deploy with Docker
```docker
docker run --name memos --publish 5230:8080 --volume ~/.memos/:/var/opt/memos -e mode=prod neosmemo/memos:0.0.1
docker run --name memos --publish 5230:8080 --volume ~/.memos/:/var/opt/memos -e mode=prod neosmemo/memos:0.1.0
```
Memos should now be running at [http://localhost:5230](http://localhost:5230). If the `~/.memos/` does not have a `memos_prod.db` file, then `memos` will auto generate it.

@ -1,4 +1,4 @@
package common
// Version is the service current released version.
var Version = "0.0.1"
var Version = "0.1.0"

@ -1,6 +1,6 @@
{
"name": "memos",
"version": "0.0.1",
"version": "0.1.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",

Loading…
Cancel
Save