Skip to content

Commit f0731b7

Browse files
committed
v0.2.10
1 parent e9313c2 commit f0731b7

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.projectforge/project.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"key": "solitaire",
33
"name": "Solitaire",
44
"icon": "heart",
5-
"version": "0.2.9",
5+
"version": "0.2.10",
66
"package": "github.com/kyleu/solitaire",
77
"port": 7777,
88
"modules": [

app/cmd/lib.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
// Lib starts the application as a library, returning the actual TCP port the server is listening on (as an int32 to make interop easier).
1313
func Lib(path string) int32 {
1414
if _buildInfo == nil {
15-
_buildInfo = &app.BuildInfo{Version: "0.2.9"}
15+
_buildInfo = &app.BuildInfo{Version: "0.2.10"}
1616
}
1717
f := &Flags{Address: "0.0.0.0", Port: 0, ConfigDir: path}
1818

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
)
77

88
var (
9-
version = "0.2.9" // updated by bin/tag.sh and ldflags
9+
version = "0.2.10" // updated by bin/tag.sh and ldflags
1010
commit = ""
1111
date = "unknown"
1212
)

tools/notarize/notarize.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cd "$dir/../.."
66

77
if [ "$PUBLISH_TEST" != "true" ]
88
then
9-
xcrun notarytool submit --apple-id $APPLE_EMAIL --team-id $APPLE_TEAM_ID --password $APPLE_PASSWORD ./build/dist/solitaire_0.2.9_darwin_amd64_desktop.dmg
10-
xcrun notarytool submit --apple-id $APPLE_EMAIL --team-id $APPLE_TEAM_ID --password $APPLE_PASSWORD ./build/dist/solitaire_0.2.9_darwin_arm64_desktop.dmg
11-
xcrun notarytool submit --apple-id $APPLE_EMAIL --team-id $APPLE_TEAM_ID --password $APPLE_PASSWORD ./build/dist/solitaire_0.2.9_darwin_all_desktop.dmg
9+
xcrun notarytool submit --apple-id $APPLE_EMAIL --team-id $APPLE_TEAM_ID --password $APPLE_PASSWORD ./build/dist/solitaire_0.2.10_darwin_amd64_desktop.dmg
10+
xcrun notarytool submit --apple-id $APPLE_EMAIL --team-id $APPLE_TEAM_ID --password $APPLE_PASSWORD ./build/dist/solitaire_0.2.10_darwin_arm64_desktop.dmg
11+
xcrun notarytool submit --apple-id $APPLE_EMAIL --team-id $APPLE_TEAM_ID --password $APPLE_PASSWORD ./build/dist/solitaire_0.2.10_darwin_all_desktop.dmg
1212
fi

0 commit comments

Comments
 (0)