Skip to content

Commit

Permalink
Prepare 2.0.0 release
Browse files Browse the repository at this point in the history
- Rename Release_Notes to Changelog.
- Update requirements.
- Update setup.py.
  • Loading branch information
audricschiltknecht committed Sep 6, 2018
1 parent e6624b1 commit dc97a99
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 5 deletions.
44 changes: 43 additions & 1 deletion Release_Notes.md → Changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,46 @@
# lgr-django Release notes
# Changelog for lgr-django

## 2.0.0 (2018-09-06)
### New features
- Support of Python 3. Compatibility with python2 is preserved for this release.
- Add MSR-3 validating repertoire.
- Create a "Tag" management page.
- Create a function to assign tags/WLE to code points.
- Allow choosing reference id when adding reference in editor.
- Add tags in code point list view.
### Improvements
- Improve display of LGR validation when rebuild is valid.
- Catch exceptions generated when input file is not a UTF-8 encoded file.
- Add required file encoding on label fields in forms.
- Update harmonization tool.
- When adding an out-of-repertoire variant, automatically add it to the repertoire + add the mapping to the code point.
- Improve wording of landing page.
- Improve handling of output for comparison tools for large LGRs.
- Update variant type to blocked for sample French LGR.
- Add notice that import function is permissive.
- Remove length limitation on label validation. Process will be run asynchronously if label can generate too many variants.
- Export testing of variant symmetry and transitivity in AJAX view.
- Add combined form of sequences in HTML output.
- Sort resource/repertoire file lists.
- Remove script parameter for harmonization tools.
- Display rule name(s) when a code point does not comply with a contextual rule.
- Better notification for invalid language tags.
- Better consistency on forms' labels.
### Fixes
- Fix redirection when adding a code point fails.
- Fix link to label in "Validate label" view.
- Remove references from repertoire on deletion.
- Replace number of variants by number of variant mappings in LGR validation statistics.
- Add proper error message when adding a tag to a sequence.
- Add support for missing language exception.
- Fix script retrievals from repertoires.
- Do not display useless error message when editing existing references.
- Fix creation of references from code point/variant edition screen.
- Fix deletion of action.
- Display code points in hexadecimal in HTML output.
- Add identity mapping for newly added variants not present in repertoire.
- Fix header hiding page content.
- Catch error in HTML output on ill-formed LGR's WLE.

## 1.9 (2017-03-09)
New features:
Expand Down
6 changes: 3 additions & 3 deletions etc/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ celery[redis]==3.1.23
django-redis-cache==1.7.1

# LGR/Unicode modules
picu==0.8
munidata==1.2
lgr-core==1.8.1
picu==1.0
munidata==2.0.0
lgr-core==2.0.0

# Natural sorting implementation
natsort==5.0.3
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='lgr-django',
version='1.9',
version='2.0.0',
author='Viagenie and Wil Tan',
author_email='[email protected]',
packages=find_packages('src'),
Expand Down

0 comments on commit dc97a99

Please sign in to comment.