Skip to content

Commit acc914b

Browse files
committed
bump extension count and version string
1 parent e5df297 commit acc914b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Mtime : 2025-11-10
44
# Copyright (C) 2018-2025 Ruohang Feng
55
#==============================================================#
6-
VERSION=v0.7.5
6+
VERSION=v0.8.0
77

88
# Build Variables
99
BRANCH=$(shell git rev-parse --abbrev-ref HEAD 2>/dev/null || echo "unknown")

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# PIG - Postgres Install Genius
22

33
[![Website: pgext.cloud](https://img.shields.io/badge/Website-pgext.cloud-slategray?style=flat&logo=cilium&logoColor=white)](https://pgext.cloud)
4-
[![Version: v0.7.5](https://img.shields.io/badge/version-v0.7.5-slategray?style=flat&logo=cilium&logoColor=white)](https://github.com/pgsty/pig/releases/tag/v0.7.5)
5-
[![Pigsty: v3.7.0](https://img.shields.io/badge/Pigsty-v3.7.0-slategray?style=flat&logo=cilium&logoColor=white)](https://doc.pgsty.com/release/latest)
4+
[![Version: v0.8.0](https://img.shields.io/badge/version-v0.8.0-slategray?style=flat&logo=cilium&logoColor=white)](https://github.com/pgsty/pig/releases/tag/v0.8.0)
5+
[![Pigsty: v4.0.0](https://img.shields.io/badge/Pigsty-v4.0.0-slategray?style=flat&logo=cilium&logoColor=white)](https://doc.pgsty.com/release/latest)
66
[![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)
7-
[![Extensions: 437](https://img.shields.io/badge/extensions-473-%233E668F?style=flat&logo=postgresql&logoColor=white&labelColor=3E668F)](https://pgext.cloud/list)
7+
[![Extensions: 440](https://img.shields.io/badge/extensions-440-%233E668F?style=flat&logo=postgresql&logoColor=white&labelColor=3E668F)](https://pgext.cloud/list)
88

99
[**pig**](https://pgext.cloud/pig) is an open-source PostgreSQL (& Extension) Package Manager for [mainstream](https://pgext.cloud/os) (EL/Debian/Ubuntu) Linux.
1010

@@ -87,7 +87,7 @@ sudo yum makecache; sudo yum install -y pig
8787

8888
```bash
8989
pig update # self-update to the latest version
90-
pig update -v 0.7.5 # self-update to the specific version
90+
pig update -v 0.8.0 # self-update to the specific version
9191
pig ext reload # update extension catalog metadata only
9292
```
9393

cmd/update.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ var updateCmd = &cobra.Command{
2323
2424
pig update # update pig to the latest version
2525
pig update [-v version] # update pig to given version
26-
pig update -v 0.7.5 # update pig to version 0.7.5
26+
pig update -v 0.8.0 # update pig to version 0.8.0
2727
`,
2828
RunE: func(cmd *cobra.Command, args []string) error {
2929
pigVersion := updateVersion

internal/config/config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ const (
5151
// BuildDate format follows RFC3339: YYYY-MM-DDTHH:MM:SSZ (e.g., 2025-01-10T10:20:00Z)
5252
// This matches the format used in Makefile: date -u +'%Y-%m-%dT%H:%M:%SZ'
5353
var (
54-
PigVersion = "0.7.5"
55-
PigstyVersion = "3.7.0"
54+
PigVersion = "0.8.0"
55+
PigstyVersion = "4.0.0"
5656
Branch = "main" // Will be set during release build
5757
Revision = "HEAD" // Will be set to commit hash during release build
5858
BuildDate = "development" // Will be set to RFC3339 format during release build

0 commit comments

Comments
 (0)