diff --git a/package.json b/package.json index 3ed3692..d149db0 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/book.js b/src/book.js index 2bd4cb5..5d6199c 100644 --- a/src/book.js +++ b/src/book.js @@ -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 diff --git a/src/epub.js b/src/epub.js index 1d0a530..b2bcdd1 100644 --- a/src/epub.js +++ b/src/epub.js @@ -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;