Skip to content
This repository has been archived by the owner on Nov 24, 2021. It is now read-only.

Commit

Permalink
New minor release 4.5.13
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkroorda committed Feb 27, 2016
1 parent 10ca778 commit 9c9e640
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 6 deletions.
Binary file removed dist/laf-fabric-4.5.12.tar.gz
Binary file not shown.
Binary file added dist/laf-fabric-4.5.13.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
project = u'LAF Fabric'
copyright = u'2013, Dirk Roorda'
version = '4.5'
release = '4.5.12'
release = '4.5.13'
exclude_patterns = ['_build']
add_function_parentheses = True
add_module_names = False
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py.bck
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ master_doc = 'index'
project = u'LAF Fabric'
copyright = u'2013, Dirk Roorda'
version = '4.5'
release = '4.5.11'
release = '4.5.12'
exclude_patterns = ['_build']
add_function_parentheses = True
add_module_names = False
Expand Down
5 changes: 5 additions & 0 deletions docs/texts/release-notes.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
Release Notes
#############
4.5.13
==========
The text forms generated by ETCBC API ``T`` for consonantal representations, suppress the special final forms of
the Hebrew consonants that have final forms.

4.5.12
==========
Small fixes: The new T API needs to load the annox ``lexicon``. Now this will be done without the
Expand Down
2 changes: 1 addition & 1 deletion emdros2laf/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import argparse

NAME = 'LAF-Fabric'
VERSION = '4.5.12'
VERSION = '4.5.13'
APIREF = 'http://laf-fabric.readthedocs.org/en/latest/texts/API-reference.html'
DEFAULT_DATA_DIR = 'laf-fabric-data'
MAIN_CFG = 'laf-fabric.cfg'
Expand Down
1 change: 1 addition & 0 deletions etcbc/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,7 @@ def to_etcbc_v(word):

def to_etcbc_c(word):
word = Transcription.remove_point_pat.sub(Transcription._remove_point, word)
word = word.upper() # no final forms of consonants
return Transcription.shin_pat.sub('#', word)

def to_hebrew(word):
Expand Down
2 changes: 1 addition & 1 deletion examples/gender.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1178,7 +1178,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.4.3"
"version": "3.5.1"
}
},
"nbformat": 4,
Expand Down
2 changes: 1 addition & 1 deletion laf/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from .timestamp import Timestamp

NAME = 'LAF-Fabric'
VERSION = '4.5.12'
VERSION = '4.5.13'
APIREF = 'http://laf-fabric.readthedocs.org/en/latest/texts/API-reference.html'
FEATDOC = 'https://shebanq.ancient-data.org/static/docs/featuredoc/texts/welcome.html'
MAIN_CFG = 'laf-fabric.cfg'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
package_data = {
'emdros2laf': ['templates/*', 'xml/*'],
},
version='4.5.12',
version='4.5.13',
description='''Processor for Linguistic Annotation Framework ISO 24612:2012), applied to Biblical Hebrew''',
author='Dirk Roorda',
author_email='shebanq@ancient-data.org',
Expand Down

0 comments on commit 9c9e640

Please sign in to comment.