Skip to content

Commit

Permalink
Doc fixes, version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
theirix committed Oct 3, 2012
1 parent a57c6ea commit 37bda5f
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
Revision history for PostgreSQL extension.

1.3.1 2012-10-04T025946
- Documentation changes.

1.3.0 2012-10-04T021556
- Initial version.
4 changes: 2 additions & 2 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "json_accessors",
"abstract": "JSON accessor functions",
"description": "Extension provides stored functions for accessing JSON fields by keys and converting JSON arrays.",
"version": "1.3.0",
"version": "1.3.1",
"maintainer": [
"Eugene Seliverstov <theirix@gmail.com>"
],
Expand All @@ -11,7 +11,7 @@
"json_accessors": {
"file": "sql/json_accessors.sql",
"docfile": "doc/json_accessors.md",
"version": "1.3.0"
"version": "1.3.1"
}
},
"prereqs": {
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ This project provides accessor functions for JSON without using PL/V8.
Usage
-----

Please consult with [doc/json_accessors.md](doc/json_accessors.md) for a function reference.
Please consult with doc/json_accessors.md for a function and operator reference.

On PGXN please click on extension from _Extensions_ section to view reference.


Installing extension
Expand Down Expand Up @@ -69,7 +71,7 @@ Copy control file to the extension directory:

Copy SQL prototypes file to the extension directory:

cp json_accessors--1.3.0.sql `<postgresql_install_dir>/bin/pg_config --sharedir`/extension
cp json_accessors--<version>.sql `<postgresql_install_dir>/bin/pg_config --sharedir`/extension

Create an extension by running:

Expand All @@ -89,4 +91,5 @@ License information
-------------------

You can use any code from this project under the terms of [PostgreSQL License](http://www.postgresql.org/about/licence/).

Please consult with the COPYING for license information.
4 changes: 2 additions & 2 deletions doc/json_accessors.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
json_accessors
==============
json_accessors extension
========================

Installing
----------
Expand Down
2 changes: 1 addition & 1 deletion json_accessors.control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# json_accessors extension
comment = 'postgresql json accessor functions'
default_version = '1.3.0'
default_version = '1.3.1'
module_pathname = '$libdir/json_accessors'
relocatable = true

0 comments on commit 37bda5f

Please sign in to comment.