diff --git a/META.json b/META.json index 41c74b10..d9f9f074 100644 --- a/META.json +++ b/META.json @@ -2,7 +2,7 @@ "name": "plv8", "abstract": "A procedural language in JavaScript powered by V8", "description": "plv8 is a trusted procedural language that is safe to use, fast to run and easy to develop.", - "version": "2.0.4-dev", + "version": "2.1.0", "maintainer": [ "Jerry Sievert " ], @@ -13,31 +13,31 @@ "prereqs": { "runtime": { "requires": { - "v8": "5.4.500", + "v8": "5.8.301", "PostgreSQL": "8.4.0" }, "recommends": { - "PostgreSQL": "9.5.0" + "PostgreSQL": "9.6.0" } } }, "provides": { "plv8": { - "file": "plv8--2.0.4-dev.sql", + "file": "plv8--2.1.0.sql", "docfile": "doc/plv8.md", - "version": "2.0.3-dev", + "version": "2.1.0", "abstract": "A procedural language in JavaScript" }, "plcoffee": { - "file": "plcoffee--2.0.4-dev.sql", + "file": "plcoffee--2.1.0.sql", "docfile": "doc/plv8.md", - "version": "2.0.3-dev", + "version": "2.1.0", "abstract": "A procedural language in CoffeeScript" }, "plls": { - "file": "plls--2.0.4-dev.sql", + "file": "plls--2.1.0.sql", "docfile": "doc/plv8.md", - "version": "2.0.3-dev", + "version": "2.1.0", "abstract": "A procedural language in LiveScript" } }, diff --git a/Makefile b/Makefile index 3c4fab2e..3f59eb81 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ # 'make static' will download v8 and build, then statically link to it. # #-----------------------------------------------------------------------------# -PLV8_VERSION = 2.0.4-dev +PLV8_VERSION = 2.1.0 PG_CONFIG = pg_config PGXS := $(shell $(PG_CONFIG) --pgxs)