From 268caea192a4b01533c1c76d4b38b145878da1fb Mon Sep 17 00:00:00 2001 From: fboulnois Date: Thu, 14 Dec 2023 21:09:40 -0500 Subject: [PATCH] docs: update changelog to v1.4.1 --- CHANGELOG.md | 6 ++++++ META.json | 4 ++-- README.md | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 087e3c1..ecc944b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [v1.4.1](https://github.com/fboulnois/pg_uuidv7/compare/v1.4.0...v1.4.1) - 2023-12-15 + +### Fixed + +* Split into build and deploy stages + ## [v1.4.0](https://github.com/fboulnois/pg_uuidv7/compare/v1.3.0...v1.4.0) - 2023-11-28 ### Added diff --git a/META.json b/META.json index a142f0b..8d5d9ec 100644 --- a/META.json +++ b/META.json @@ -1,7 +1,7 @@ { "name": "pg_uuidv7", "abstract": "Create UUIDv7 values in Postgres", - "version": "1.4.0", + "version": "1.4.1", "maintainer": "fboulnois ", "license": "open_source", "provides": { @@ -9,7 +9,7 @@ "abstract": "Create UUIDv7 values in Postgres", "file": "sql/pg_uuidv7--1.4.sql", "docfile": "README.md", - "version": "1.4.0" + "version": "1.4.1" } }, "resources": { diff --git a/README.md b/README.md index 66adc30..e0b3aa4 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ directory ```sh # example shell script to install pg_uuidv7 cd "$(mktemp -d)" -curl -LO "https://github.com/fboulnois/pg_uuidv7/releases/download/v1.4.0/{pg_uuidv7.tar.gz,SHA256SUMS}" +curl -LO "https://github.com/fboulnois/pg_uuidv7/releases/download/v1.4.1/{pg_uuidv7.tar.gz,SHA256SUMS}" tar xf pg_uuidv7.tar.gz sha256sum -c SHA256SUMS PG_MAJOR=$(pg_config --version | sed 's/^.* \([0-9]\{1,\}\).*$/\1/')