Compare commits

...

2 Commits

Author SHA1 Message Date
1225439b4a update makefile 2025-09-09 20:52:33 +00:00
692b348994 bump api version to 1.0.0 2025-09-07 05:57:24 +00:00
2 changed files with 4 additions and 2 deletions

View File

@@ -1,11 +1,13 @@
.PHONY: build test clean .PHONY: build test clean
build: clean build: clean
@echo "======================== Building Binary ======================="
CGO_ENABLED=0 go build -ldflags="-s -w" -v -o dist/ . CGO_ENABLED=0 go build -ldflags="-s -w" -v -o dist/ .
test: clean test: clean
go run . go run .
clean: clean:
@echo "======================== Cleaning Project ======================"
go clean go clean
rm -f dist/* rm -rf dist/*

View File

@@ -13,7 +13,7 @@ import (
"github.com/luthermonson/go-proxmox" "github.com/luthermonson/go-proxmox"
) )
const APIVersion string = "0.0.3" const APIVersion string = "1.0.0"
var client ProxmoxClient var client ProxmoxClient