Skip to content

Commit

Permalink
Update version to v1.1.1-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
950288 committed Jun 18, 2024
1 parent d2d3051 commit 14f977f
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
- '**/README.md'
- '**/README_zh.md'
env:
TAG: v1.1.0
TAG: v1.1.1-beta.1
jobs:
build:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion BackEnd/serve.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func main() {
http.Handle("/", http.FileServer(http.Dir("../Wikibreeze")))
}
fmt.Println("")
utils.PrintSuccess("WikiBreeze(v1.1.0) started on port " + strconv.Itoa(port) + " successfully")
utils.PrintSuccess("WikiBreeze(v1.1.1-beta.1) started on port " + strconv.Itoa(port) + " successfully")
fmt.Println("Local:\t\t", utils.Cyanf("http://localhost:"+strconv.Itoa(port)+"/"))

//Get local ip
Expand Down
4 changes: 2 additions & 2 deletions FrontEnd/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion FrontEnd/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wikibreeze",
"version": "v1.1.0",
"version": "v1.1.1-beta.1",
"private": true,
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ The target program generated by the compilation is under the `Wikibreeze` folder

To develop this project simultaneously in Vue 3 and Go, you need to run the following commands in two different terminals:
`cd frontend && npm run dev`
`cd backend && go run` .
`cd backend && go run .`
This will start the front-end development server and the back-end development server. You can access the link in the front-end console to view the page.

## Working Principle 📝
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wikibreeze",
"version": "v1.1.0",
"version": "v1.1.1-beta.1",
"type": "module",
"scripts": {
"prepare": "node -v",
Expand Down

0 comments on commit 14f977f

Please sign in to comment.