Skip to content

Commit f52e87f

Browse files
committed
bump version to 1.3.1
1 parent 411c016 commit f52e87f

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Mtime : 2026-02-08
44
# Copyright (C) 2018-2026 Ruohang Feng
55
#==============================================================#
6-
VERSION=v1.3.0
6+
VERSION=v1.3.1
77
PIG_VERSION:=$(patsubst v%,%,$(VERSION))
88

99
# Build Variables

cli/build/get.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ var SpecialSourceMapping = map[string][]string{
3030

3131
// Multi-version PostgreSQL source packages
3232
"libfepgutils": {
33-
"postgresql-14.19.tar.gz",
34-
"postgresql-15.14.tar.gz",
35-
"postgresql-16.10.tar.gz",
36-
"postgresql-17.6.tar.gz",
33+
"postgresql-14.22.tar.gz",
34+
"postgresql-15.17.tar.gz",
35+
"postgresql-16.13.tar.gz",
36+
"postgresql-17.9.tar.gz",
3737
"postgresql-18.3.tar.gz",
3838
},
3939
}

cmd/update.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ var updateCmd = &cobra.Command{
2424
2525
pig update # update pig to the latest version
2626
pig update [-v version] # update pig to given version
27-
pig update -v 1.3.0 # update pig to version 1.3.0
27+
pig update -v 1.3.1 # update pig to version 1.3.1
2828
`,
2929
RunE: func(cmd *cobra.Command, args []string) error {
3030
return runLegacyStructured(legacyModuleSty, "pig update", args, map[string]interface{}{

internal/config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ func IsStructuredOutput() bool {
7575
// BuildDate format follows RFC3339: YYYY-MM-DDTHH:MM:SSZ (e.g., 2025-01-10T10:20:00Z)
7676
// This matches the format used in Makefile: date -u +'%Y-%m-%dT%H:%M:%SZ'
7777
var (
78-
PigVersion = "1.3.0"
78+
PigVersion = "1.3.1"
7979
PigstyVersion = "4.2.0"
8080
Branch = "main" // Will be set during release build
8181
Revision = "HEAD" // Will be set to commit hash during release build

0 commit comments

Comments
 (0)