Skip to content

Commit

Permalink
update for goreleaser and packer sdk deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
mschuchard committed Sep 6, 2024
1 parent 68fa06e commit 828aa23
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ builds:
- CGO_ENABLED=0
mod_timestamp: '{{ .CommitTimestamp }}'
flags:
- -trimpath #removes all file system paths from the compiled executable
- -trimpath # removes all file system paths from the compiled executable
ldflags:
- '-s -w -X {{ .ModulePath }}/version.Version={{.Version}}'
- '-s -w'
goos:
- windows
- linux
Expand Down Expand Up @@ -53,5 +53,3 @@ release:
# To include a separate docs.zip uncomment the extra_files config and the docs.zip command hook above.
#extra_files:
#- glob: ./docs.zip
changelog:
skip: true
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (

func main() {
// initialize plugin version
pluginVersion := version.InitializePluginVersion("1.4.0", "")
pluginVersion := version.NewPluginVersion("1.4.1", "", "")

// initialize packer plugin set for testinfra
packerPluginSet := plugin.NewSet()
Expand Down

0 comments on commit 828aa23

Please sign in to comment.