File tree 4 files changed +6
-6
lines changed
4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 2
2
"key" : " solitaire" ,
3
3
"name" : " Solitaire" ,
4
4
"icon" : " heart" ,
5
- "version" : " 0.2.9 " ,
5
+ "version" : " 0.2.10 " ,
6
6
"package" : " github.com/kyleu/solitaire" ,
7
7
"port" : 7777 ,
8
8
"modules" : [
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import (
12
12
// Lib starts the application as a library, returning the actual TCP port the server is listening on (as an int32 to make interop easier).
13
13
func Lib (path string ) int32 {
14
14
if _buildInfo == nil {
15
- _buildInfo = & app.BuildInfo {Version : "0.2.9 " }
15
+ _buildInfo = & app.BuildInfo {Version : "0.2.10 " }
16
16
}
17
17
f := & Flags {Address : "0.0.0.0" , Port : 0 , ConfigDir : path }
18
18
Original file line number Diff line number Diff line change 6
6
)
7
7
8
8
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
10
10
commit = ""
11
11
date = "unknown"
12
12
)
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ cd "$dir/../.."
6
6
7
7
if [ " $PUBLISH_TEST " != " true" ]
8
8
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
12
12
fi
You can’t perform that action at this time.
0 commit comments