Skip to content

Commit 310038c

Browse files
committed
metafile
1 parent 374c1c6 commit 310038c

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

.github/workflows/release.yml

-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ jobs:
2020
run: pgxn-bundle
2121
- name: Release on PGXN
2222
run: pgxn-release
23-
- name: Generate Release Changes
24-
run: make latest-changes.md
2523
- name: Create GitHub Release
2624
id: release
2725
uses: actions/create-release@v1

META.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "metagration",
33
"abstract": "Migrate Postgres with Postgres",
44
"description": "This extension provides a powerful Postgres migration tool written in Postgres itself.",
5-
"version": "1.0.3",
5+
"version": "1.0.4",
66
"maintainer": [
77
"Michel Pelletier <[email protected]>"
88
],
@@ -12,7 +12,7 @@
1212
"abstract": "Migrate Postgres with Postgres",
1313
"file": "sql/metagration.sql",
1414
"docfile": "README.md",
15-
"version": "1.0.3"
15+
"version": "1.0.4"
1616
}
1717
},
1818
"prereqs": {

Makefile

-3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,3 @@ sql/$(EXTENSION)--$(EXTVERSION).sql: sql/$(EXTENSION).sql
1919

2020
dist:
2121
git archive --format zip --prefix=$(EXTENSION)-$(DISTVERSION)/ -o $(EXTENSION)-$(DISTVERSION).zip HEAD
22-
23-
latest-changes.md: Changes
24-
perl -e 'while (<>) {last if /^(v?\Q${DISTVERSION}\E)/; } print "Changes for v${DISTVERSION}:\n"; while (<>) { last if /^\s*$$/; s/^\s+//; print }' Changes > $@

latest-changes.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

0 commit comments

Comments
 (0)