Skip to content

Commit b794137

Browse files
committed
v1.1.1
1 parent 0615919 commit b794137

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

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.1.0
6+
VERSION=v1.1.1
77
PIG_VERSION:=$(patsubst v%,%,$(VERSION))
88

99
# Build Variables

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Website: pgext.cloud](https://img.shields.io/badge/Website-pgext.cloud-slategray?style=flat&logo=cilium&logoColor=white)](https://pgext.cloud)
44
[![Doc: pig](https://img.shields.io/badge/Docs-pig-slategray?style=flat)](https://pigsty.io/docs/pig)
5-
[![Version: v1.1.0](https://img.shields.io/badge/version-v1.1.0-slategray?style=flat)](https://github.com/pgsty/pig/releases/tag/v1.1.0)
5+
[![Version: v1.1.1](https://img.shields.io/badge/version-v1.1.1-slategray?style=flat)](https://github.com/pgsty/pig/releases/tag/v1.1.1)
66
[![Pigsty: v4.1.0](https://img.shields.io/badge/Pigsty-v4.1.0-slategray?style=flat)](https://pigsty.io/docs/about/release)
77
[![License: Apache-2.0](https://img.shields.io/github/license/pgsty/pig?logo=opensourceinitiative&logoColor=green&color=slategray)](https://github.com/pgsty/pig/blob/main/LICENSE)
88
[![Extensions: 451](https://img.shields.io/badge/extensions-451-%233E668F?style=flat&logo=postgresql&logoColor=white&labelColor=3E668F)](https://pgext.cloud/list)
@@ -90,7 +90,7 @@ sudo yum makecache; sudo yum install -y pig
9090

9191
```bash
9292
pig update # self-update to the latest version
93-
pig update -v 1.1.0 # self-update to the specific version
93+
pig update -v 1.1.1 # self-update to the specific version
9494
pig ext reload # update extension catalog metadata only
9595
```
9696

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.1.0 # update pig to version 1.1.0
27+
pig update -v 1.1.1 # update pig to version 1.1.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.1.0"
78+
PigVersion = "1.1.1"
7979
PigstyVersion = "4.1.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)