Skip to content

Commit

Permalink
Merge pull request #17 from edx/saleem-latif/ENT-3428
Browse files Browse the repository at this point in the history
ENT-3428: First stable release of taxonomy
  • Loading branch information
saleem-latif authored Sep 18, 2020
2 parents 965e456 + 34b70e6 commit b88f7e5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ Unreleased
--------------------


[1.0.0] - 2020-09-09
--------------------

* Added Providers and Validators for integrations and upgraded to the first stable release.

[0.1.1] - 2020-09-09
--------------------

Expand Down
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,11 @@ def get_requirements(requirements_file):
setup(
name='taxonomy-service',
version=VERSION,
packages=['taxonomy'],
packages=[
'taxonomy',
'taxonomy.providers',
'taxonomy.validators',
],
description='Taxonomy service',
long_description=README + "\n\n" + CHANGELOG,
author='edX',
Expand Down
2 changes: 1 addition & 1 deletion taxonomy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
Your project description goes here.
"""

__version__ = '0.1.1'
__version__ = '1.0.0'

default_app_config = 'taxonomy.apps.TaxonomyConfig' # pylint: disable=invalid-name

0 comments on commit b88f7e5

Please sign in to comment.