Skip to content

Commit

Permalink
Bump to 0.1.3 to fix pgxn
Browse files Browse the repository at this point in the history
Signed-off-by: David Beauchamp <david@davidbeauchamp.com>
  • Loading branch information
davidbeauchamp committed Aug 6, 2018
1 parent 455ebd5 commit bdcdcaa
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 8 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Changelog for pgzint

0.1.3 2018-08-05
- [sigh] fix pgxn release

0.1.2 2018-08-05
- Add support for barcode rotation
- Better guard against invalid input
Expand Down
6 changes: 3 additions & 3 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
"name": "pgzint",
"abstract": "A PostgreSQL extension for the Zint barcode library",
"description": "This library contains a PostgreSQL extension called pgzint, which allows you to generate PNG-formatted barcode images from a number of different symbologies supported by Zint. It includes a helper view and table for information about supported barcode symbols, as well as convenience functions for generating default barcodes from input text.",
"version": "0.1.2",
"version": "0.1.3",
"maintainer": [
"David Beauchamp <postgresql@davidbeauchamp.com>"
],
"license": "mit",
"provides": {
"pgzint": {
"abstract": "A PostgreSQL extension for the Zint barcode library",
"file": "pgzint--0.1.1.sql",
"file": "pgzint--0.1.3.sql",
"docfile": "README.md",
"version": "0.1.2"
"version": "0.1.3"
}
},
"resources": {
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ MODULE_big = pgzint
OBJS = pgzint.o
SHLIB_LINK = -lzint -lpng
EXTENSION = pgzint
DATA = pgzint--0.1.2.sql
DATA = pgzint--0.1.3.sql
DOCS = README.md
TESTS = $(wildcard test/sql/*.sql)
REGRESS = $(patsubst test/sql/%.sql,%,$(TESTS))
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# pgzint 0.1.1
# pgzint 0.1.3
=================

PostgreSQL extension for the Zint Barcode library
Expand All @@ -23,7 +23,8 @@ It primarily adds a function, from pgzint.c:
pshowtext boolean,
poption1 integer,
poption2 integer,
poption3 integer
poption3 integer,
protation integer = 0
)

To determine information about what barcode symbologies are available, a table called `bc_symbols` and a view called `barcodes` have been added. Two functions, `getzintsymbolconstant(integer)` and `getzintsymbolid(text)` can be used to look make passing parameters to the barcode generation function easier.
Expand Down
2 changes: 1 addition & 1 deletion package.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
git archive --format zip --prefix=pgzint-0.1.2/ --output pgzint-0.1.2.zip master
git archive --format zip --prefix=pgzint-0.1.3/ --output pgzint-0.1.3.zip master
File renamed without changes.
2 changes: 1 addition & 1 deletion pgzint.control
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# pgzint extension
comment = 'Zint Barcode Library for PostgreSQL'
default_version = '0.1.2'
default_version = '0.1.3'
relocatable = true

0 comments on commit bdcdcaa

Please sign in to comment.