1
0
Fork 0
mirror of https://github.com/futurepress/epub.js.git synced 2025-10-02 14:49:16 +02:00

version bump to 0.3.2

This commit is contained in:
Fred Chasen 2016-12-09 11:47:32 +01:00
parent 40d41cb74d
commit c65a7186ab
3 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
{
"name": "epubjs",
"version": "0.3.1",
"version": "0.3.2",
"description": "Parse and Render Epubs",
"main": "lib/index.js",
"jsnext:main": "src/index.js",

View file

@ -16,7 +16,7 @@ import request from "./utils/request";
import EpubCFI from "./epubcfi";
const CONTAINER_PATH = "META-INF/container.xml";
const EPUBJS_VERSION = "0.3.1";
const EPUBJS_VERSION = "0.3.2";
/**
* Creates a new Book

View file

@ -14,7 +14,7 @@ function ePub(url, options) {
return new Book(url, options);
}
ePub.VERSION = "0.3.1";
ePub.VERSION = "0.3.2";
if (typeof(global) !== "undefined") {
global.EPUBJS_VERSION = ePub.VERSION;