Skip to content

Commit

Permalink
v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleu committed Oct 8, 2023
1 parent 340e990 commit 0f5797b
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 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.2",
"version": "0.1.3",
"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 @@ -13,7 +13,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.2"}
_buildInfo = &app.BuildInfo{Version: "0.1.3"}
}
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 @@ -7,7 +7,7 @@ import (
)

var (
version = "0.1.2" // updated by bin/tag.sh and ldflags
version = "0.1.3" // updated by bin/tag.sh and ldflags
commit = ""
date = "unknown"
)
Expand Down
6 changes: 3 additions & 3 deletions tools/notarize/gon.all.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ source = ["./build/dist/darwin_darwin_all/npn"]
bundle_id = "dev.npn"

notarize {
path = "./build/dist/npn_0.1.2_darwin_all_desktop.dmg"
path = "./build/dist/npn_0.1.3_darwin_all_desktop.dmg"
bundle_id = "dev.npn"
}

Expand All @@ -17,10 +17,10 @@ sign {
}

dmg {
output_path = "./build/dist/npn_0.1.2_darwin_all.dmg"
output_path = "./build/dist/npn_0.1.3_darwin_all.dmg"
volume_name = "NPN"
}

zip {
output_path = "./build/dist/npn_0.1.2_darwin_all_notarized.zip"
output_path = "./build/dist/npn_0.1.3_darwin_all_notarized.zip"
}
6 changes: 3 additions & 3 deletions tools/notarize/gon.amd64.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ source = ["./build/dist/darwin_darwin_amd64_v1/npn"]
bundle_id = "dev.npn"

notarize {
path = "./build/dist/npn_0.1.2_darwin_amd64_desktop.dmg"
path = "./build/dist/npn_0.1.3_darwin_amd64_desktop.dmg"
bundle_id = "dev.npn"
}

Expand All @@ -17,10 +17,10 @@ sign {
}

dmg {
output_path = "./build/dist/npn_0.1.2_darwin_amd64.dmg"
output_path = "./build/dist/npn_0.1.3_darwin_amd64.dmg"
volume_name = "NPN"
}

zip {
output_path = "./build/dist/npn_0.1.2_darwin_amd64_notarized.zip"
output_path = "./build/dist/npn_0.1.3_darwin_amd64_notarized.zip"
}
6 changes: 3 additions & 3 deletions tools/notarize/gon.arm64.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ source = ["./build/dist/darwin_darwin_arm64/npn"]
bundle_id = "dev.npn"

notarize {
path = "./build/dist/npn_0.1.2_darwin_arm64_desktop.dmg"
path = "./build/dist/npn_0.1.3_darwin_arm64_desktop.dmg"
bundle_id = "dev.npn"
}

Expand All @@ -17,10 +17,10 @@ sign {
}

dmg {
output_path = "./build/dist/npn_0.1.2_darwin_arm64.dmg"
output_path = "./build/dist/npn_0.1.3_darwin_arm64.dmg"
volume_name = "NPN"
}

zip {
output_path = "./build/dist/npn_0.1.2_darwin_arm64_notarized.zip"
output_path = "./build/dist/npn_0.1.3_darwin_arm64_notarized.zip"
}

0 comments on commit 0f5797b

Please sign in to comment.