Skip to content

Commit

Permalink
[v2] v2.0.0-beta.10
Browse files Browse the repository at this point in the history
  • Loading branch information
leaanthony committed Oct 10, 2021
1 parent 7caf6af commit b0df3f5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion v2/cmd/wails/internal/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package internal

var Version = "v2.0.0-beta.9"
var Version = "v2.0.0-beta.10"
12 changes: 6 additions & 6 deletions v2/internal/gomod/gomod_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const basicUpdated string = `module changeme
go 1.17
require github.com/wailsapp/wails/v2 v2.0.0-beta.9
require github.com/wailsapp/wails/v2 v2.0.0-beta.10
require (
github.com/andybalholm/brotli v1.0.2 // indirect
Expand Down Expand Up @@ -159,7 +159,7 @@ const multilineRequireUpdated = `module changeme
go 1.17
require (
github.com/wailsapp/wails/v2 v2.0.0-beta.9
github.com/wailsapp/wails/v2 v2.0.0-beta.10
)
require (
Expand Down Expand Up @@ -210,8 +210,8 @@ func TestUpdateGoModVersion(t *testing.T) {
want []byte
wantErr bool
}{
{"basic", args{[]byte(basic), "v2.0.0-beta.9"}, []byte(basicUpdated), false},
{"basicmultiline", args{[]byte(multilineRequire), "v2.0.0-beta.9"}, []byte(multilineRequireUpdated), false},
{"basic", args{[]byte(basic), "v2.0.0-beta.10"}, []byte(basicUpdated), false},
{"basicmultiline", args{[]byte(multilineRequire), "v2.0.0-beta.10"}, []byte(multilineRequireUpdated), false},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
Expand All @@ -238,8 +238,8 @@ func TestGoModOutOfSync(t *testing.T) {
want bool
wantErr bool
}{
{"basic", args{[]byte(basic), "v2.0.0-beta.9"}, true, false},
{"basicmultiline", args{[]byte(multilineRequire), "v2.0.0-beta.9"}, true, false},
{"basic", args{[]byte(basic), "v2.0.0-beta.10"}, true, false},
{"basicmultiline", args{[]byte(multilineRequire), "v2.0.0-beta.10"}, true, false},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion website/docs/gettingstarted/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ import TabItem from "@theme/TabItem";

## Installing Wails

Run `go install github.com/wailsapp/wails/v2/cmd/[email protected].9` to install the Wails CLI.
Run `go install github.com/wailsapp/wails/v2/cmd/[email protected].10` to install the Wails CLI.

## System Check

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ import TabItem from "@theme/TabItem";

## 安装 Wails

运行 `go install github.com/wailsapp/wails/v2/cmd/[email protected].9` 安装 Wails CLI。
运行 `go install github.com/wailsapp/wails/v2/cmd/[email protected].10` 安装 Wails CLI。

## 系统检查

Expand Down

0 comments on commit b0df3f5

Please sign in to comment.