From 32be2ed2a81a184c2e1b37c59883355df6b37b90 Mon Sep 17 00:00:00 2001 From: Kyle Unverferth Date: Tue, 12 Nov 2024 20:38:06 -0700 Subject: [PATCH] v0.1.35 --- .projectforge/project.json | 2 +- app/cmd/lib.go | 2 +- main.go | 2 +- tools/notarize/notarize.sh | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.projectforge/project.json b/.projectforge/project.json index 571b758..be5b1eb 100644 --- a/.projectforge/project.json +++ b/.projectforge/project.json @@ -2,7 +2,7 @@ "key": "npn", "name": "NPN", "icon": "npn", - "version": "0.1.34", + "version": "0.1.35", "package": "github.com/kyleu/npn", "port": 19000, "modules": [ diff --git a/app/cmd/lib.go b/app/cmd/lib.go index 4ba6c7f..be2f1ee 100644 --- a/app/cmd/lib.go +++ b/app/cmd/lib.go @@ -12,7 +12,7 @@ import ( // Lib starts the application as a library, returning the actual TCP port the server is listening on (as an int32 to make interop easier). func Lib(path string) int32 { if _buildInfo == nil { - _buildInfo = &app.BuildInfo{Version: "0.1.34"} + _buildInfo = &app.BuildInfo{Version: "0.1.35"} } f := &Flags{Address: "0.0.0.0", Port: 0, ConfigDir: path} diff --git a/main.go b/main.go index b725a64..575fd46 100644 --- a/main.go +++ b/main.go @@ -6,7 +6,7 @@ import ( ) var ( - version = "0.1.34" // updated by bin/tag.sh and ldflags + version = "0.1.35" // updated by bin/tag.sh and ldflags commit = "" date = "unknown" ) diff --git a/tools/notarize/notarize.sh b/tools/notarize/notarize.sh index 6c5f207..ab032eb 100755 --- a/tools/notarize/notarize.sh +++ b/tools/notarize/notarize.sh @@ -6,7 +6,7 @@ cd "$dir/../.." if [ "$PUBLISH_TEST" != "true" ] then - xcrun notarytool submit --apple-id $APPLE_EMAIL --team-id $APPLE_TEAM_ID --password $APPLE_PASSWORD ./build/dist/npn_0.1.34_darwin_amd64_desktop.dmg - xcrun notarytool submit --apple-id $APPLE_EMAIL --team-id $APPLE_TEAM_ID --password $APPLE_PASSWORD ./build/dist/npn_0.1.34_darwin_arm64_desktop.dmg - xcrun notarytool submit --apple-id $APPLE_EMAIL --team-id $APPLE_TEAM_ID --password $APPLE_PASSWORD ./build/dist/npn_0.1.34_darwin_all_desktop.dmg + xcrun notarytool submit --apple-id $APPLE_EMAIL --team-id $APPLE_TEAM_ID --password $APPLE_PASSWORD ./build/dist/npn_0.1.35_darwin_amd64_desktop.dmg + xcrun notarytool submit --apple-id $APPLE_EMAIL --team-id $APPLE_TEAM_ID --password $APPLE_PASSWORD ./build/dist/npn_0.1.35_darwin_arm64_desktop.dmg + xcrun notarytool submit --apple-id $APPLE_EMAIL --team-id $APPLE_TEAM_ID --password $APPLE_PASSWORD ./build/dist/npn_0.1.35_darwin_all_desktop.dmg fi