Skip to content

Commit

Permalink
Updated changelog
Browse files Browse the repository at this point in the history
- Updated changelog/history
  • Loading branch information
JonasGe committed Oct 25, 2019
1 parent acb91e5 commit 8b55ddc
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 14 deletions.
39 changes: 27 additions & 12 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
Changelog
=========

0.5.0
-----

- Updated dependencies and Python (Removed Python3.3 and Python3.4 support, added 3.6 and 3.7)

0.4.6
-----

Expand All @@ -15,42 +23,48 @@

0.4.3
-----
- Upgrade to https://github.com/mattcg/language-subtag-registry/releases/tag/v0.3.18

- Upgrade to <https://github.com/mattcg/language-subtag-registry/releases/tag/v0.3.18>

0.4.2
-----

- Official python 3.5 compatibility
- Upgrade to https://github.com/mattcg/language-subtag-registry/releases/tag/v0.3.15
- Upgrade to <https://github.com/mattcg/language-subtag-registry/releases/tag/v0.3.15>

0.4.1
-----

- Included the data folder again in the project package.
- Added bash script (`update_data_files.sh`) to download the
`language-subtag-registry <https://github.com/mattcg/language-subtag-registry/>`_
and move this data in the data folder of the project.

0.4.0
-----

- Allow parsing a redundant tag into subtags.
- Added package.json file for easy update of the language subtag registry data using `npm <https://docs.npmjs.com/>`_
(:code:`npm install` or :code:`npm update`)
- Improvement of the :code:`language-tags.tags.search` function: rank equal description at top.
See `mattcg/language-tags#4 <https://github.com/mattcg/language-tags/issues/4>`_

0.3.2
_____
- Upgrade to https://github.com/mattcg/language-subtag-registry/releases/tag/v0.3.11
-----

- Upgrade to <https://github.com/mattcg/language-subtag-registry/releases/tag/v0.3.11>
- Added wheel config
- Fixed bug under windows: opening data files using utf-8 encoding.

0.3.1
_____
- Upgrade to https://github.com/mattcg/language-subtag-registry/releases/tag/v0.3.8
-----

- Upgrade to <https://github.com/mattcg/language-subtag-registry/releases/tag/v0.3.8>

0.3.0
_____
- Upgrade to https://github.com/mattcg/language-subtag-registry/releases/tag/v0.3.6
-----

- Upgrade to <https://github.com/mattcg/language-subtag-registry/releases/tag/v0.3.6>
- Simplify output of __str__ functions. The previous json dump is assigned to the repr function.

.. code-block:: python
Expand All @@ -64,9 +78,9 @@ _____
'Latn'
0.2.0
_____
-----

- Adjust language, region and script properties of Tag. The properties will return :class:`language_tags.Subtag.Subtag`
- Adjust language, region and script properties of Tag. The properties will return `language_tags.Subtag.Subtag`
instead of a list of string subtags

.. code-block:: python
Expand All @@ -77,8 +91,9 @@ _____
'{"subtag": "be", "record": {"Subtag": "BE", "Added": "2005-10-16", "Type": "region", "Description": ["Belgium"]}, "type": "region"}'
> print(tags.tag('en-mt-arab').script)
'{"subtag": "arab", "record": {"Subtag": "Arab", "Added": "2005-10-16", "Type": "script", "Description": ["Arabic"]}, "type": "script"}'
0.1.1
_____
-----

- Added string and Unicode functions to make it easy to print Tags and Subtags.

Expand All @@ -95,6 +110,6 @@ _____
['nl']
0.1.0
_____
-----

- Initial version
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import os

here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
README = open(os.path.join(here, 'README.md')).read()
HISTORY = open(os.path.join(here, 'HISTORY.rst')).read()

packages = [
Expand All @@ -25,7 +25,8 @@
author='Flanders Heritage Agency',
author_email='[email protected]',
description='This project is a Python version of the language-tags Javascript project.',
long_description=README + '\n\n' + HISTORY,
long_description=README + "/n/n" + HISTORY,
long_description_content_type="text/x-rst",
zip_safe=False,
classifiers=[
'Topic :: Software Development :: Libraries :: Python Modules',
Expand Down

0 comments on commit 8b55ddc

Please sign in to comment.