-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathCHANGELOG
69 lines (44 loc) · 2.28 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
1.0.0 (2011-11-24) - Initial Release
====================================
* python-scriptures is a Python package and regular expression library for
validating, extracting, and normalizing biblical scripture references from
blocks of text.
1.0.1 (2011-11-25) - Doc Fix
============================
* Fixed documentation error in README
1.1.0 (2012-03-31) - Single Chapter Books
=========================================
* Updated scripture reference regex to recognize an end chapter and verse even
if no start verse is provided
* Added special case reference normalization for single chapter books
* Broke scripture_re regex into multiple lines for better legibility
* Updated documentation to explain single chapter book extraction
* Rewrote reference_to_string and provided better output for single chapter book
references
* Added single chapter book reference_to_string examples to documentation
1.1.1 (2013-04-01) - Regex Fix
==============================
* Updated scripture reference regex to require a word boundry before the book title
1.1.2 (2013-05-03) - Obadiah Regex Fix
======================================
* Fixed Obadiah book name regular expression - Thank you Ben McFadden (mcfadden)
1.1.3 (2014-04-05) - Psalms Regex Fix
=====================================
* Psalms regular expression now recognizes "Psalms" in addition to "Ps", "Psa", "Psalm".
2.0.0 (2014-04-05) - Python 3 Compatibility
===========================================
* Made some simple adjustments so that python-scriptures now works with python 3.
- module imports now use relative import syntax
- use .values() on small dict instead of .itervalues()
2.1.0 (2014-05-08) - Unicode Compatibility and Bugfixes
=======================================================
* Made the library unicode compatible with the ability to recognize the \u2013 en and \u2014 em dashes
* Added the OSIS Phlm abbreviation to the Philemon regex
* Fixed a regex book matching bug that was causing Philemon references to match as Philippians (Thank you Ganon11 for the bug report)
2.1.2 (2015-03-18) - Multi-Chapter references
=============================================
* Can now reference multiple chapters
- ex: Revelation 2-3
2.1.3 (2015-03-19) - Print Debug Msg
====================================
* Removed print debug msg