Skip to content

Commit

Permalink
v0.1.25
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleu committed Aug 26, 2024
1 parent 8f8ea40 commit ac28395
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .projectforge/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"key": "npn",
"name": "NPN",
"icon": "npn",
"version": "0.1.24",
"version": "0.1.25",
"package": "github.com/kyleu/npn",
"port": 19000,
"modules": [
Expand Down
2 changes: 1 addition & 1 deletion app/cmd/lib.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.24"}
_buildInfo = &app.BuildInfo{Version: "0.1.25"}
}
f := &Flags{Address: "0.0.0.0", Port: 0, ConfigDir: path}

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
)

var (
version = "0.1.24" // updated by bin/tag.sh and ldflags
version = "0.1.25" // updated by bin/tag.sh and ldflags
commit = ""
date = "unknown"
)
Expand Down
6 changes: 3 additions & 3 deletions tools/notarize/notarize.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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.24_darwin_amd64_desktop.dmg
xcrun notarytool submit --apple-id $APPLE_EMAIL --team-id $APPLE_TEAM_ID --password $APPLE_PASSWORD ./build/dist/npn_0.1.24_darwin_arm64_desktop.dmg
xcrun notarytool submit --apple-id $APPLE_EMAIL --team-id $APPLE_TEAM_ID --password $APPLE_PASSWORD ./build/dist/npn_0.1.24_darwin_all_desktop.dmg
xcrun notarytool submit --apple-id $APPLE_EMAIL --team-id $APPLE_TEAM_ID --password $APPLE_PASSWORD ./build/dist/npn_0.1.25_darwin_amd64_desktop.dmg
xcrun notarytool submit --apple-id $APPLE_EMAIL --team-id $APPLE_TEAM_ID --password $APPLE_PASSWORD ./build/dist/npn_0.1.25_darwin_arm64_desktop.dmg
xcrun notarytool submit --apple-id $APPLE_EMAIL --team-id $APPLE_TEAM_ID --password $APPLE_PASSWORD ./build/dist/npn_0.1.25_darwin_all_desktop.dmg
fi
2 changes: 1 addition & 1 deletion views/vsite/GoSource.html.go

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

0 comments on commit ac28395

Please sign in to comment.