Skip to content

Commit cf1d214

Browse files
authored
Merge pull request #331 from aerkalov/feat/release
Prepare for the v0.19 release
2 parents e96c501 + 1950cc7 commit cf1d214

File tree

6 files changed

+28
-5
lines changed

6 files changed

+28
-5
lines changed

AUTHORS.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,9 @@ Michael Timblin <[email protected]>
3434
Hsiu-Ming Chang <[email protected]>
3535
3636
Tom Ritchford <[email protected]>
37+
Juan Pablo Delgado <[email protected]>
38+
Tom Kuson <[email protected]>
39+
Samuel Clay <[email protected]>
40+
41+
Youssif Shaaban Alsager <[email protected]>
3742

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
EbookLib 0.18
1+
EbookLib 0.19

ebooklib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
# Version of ebook library
1818

19-
VERSION = (0, 18, 1)
19+
VERSION = (0, 19, 0)
2020

2121
# LIST OF POSSIBLE ITEMS
2222
ITEM_UNKNOWN = 0

ebooklib/epub.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838

3939
# Version of EPUB library
40-
VERSION = (0, 18, 1)
40+
VERSION = (0, 19, 0)
4141

4242
NAMESPACES = {'XML': 'http://www.w3.org/XML/1998/namespace',
4343
'EPUB': 'http://www.idpf.org/2007/ops',

samples/README.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,22 @@ EbookLib Samples
1717

1818
Simple script which creates static markdown files + images from your EPUB.
1919

20-
* 05_plugins_create
20+
* 05_plugins_create
21+
22+
How to create sample plugin.
23+
24+
* 06_parse
25+
26+
Basing parsing of EPUB file.
27+
28+
* 07_pagebreaks
29+
30+
Create simple EPUB3 with both visible and invisible pagebreaks.
31+
32+
* 08_SMIL
33+
34+
How to integrate Synchronized Multimedia Integration Language (SMIL) into your EPUB.
35+
36+
* 09_create_image
37+
38+
Creates chapter with image.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def read(path):
1313

1414
setup(
1515
name = 'EbookLib',
16-
version = '0.18',
16+
version = '0.19',
1717
author = 'Aleksandar Erkalovic',
1818
author_email = '[email protected]',
1919
packages = ['ebooklib', 'ebooklib.plugins'],

0 commit comments

Comments
 (0)