Skip to content

Commit

Permalink
Merge branch 'release/0.10.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
areski committed Apr 26, 2024
2 parents 7576b60 + f7afb16 commit 0b9c3bd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion django_nvd3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Project location : https://github.com/areski/django-nvd3
"""

__version__ = '0.10.0' # edit also docs/source/conf.py and update requirements.txt
__version__ = '0.10.1' # edit also docs/source/conf.py and update requirements.txt
__author__ = "Areski Belaid"
__contact__ = "[email protected]"
__homepage__ = "http://areskibelaid.com/"
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
# built documents.
#
# The short X.Y version.
version = '0.10.0'
version = '0.10.1'
# The full version, including alpha/beta/rc tags.
#release = '0.6.1'
release = version
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from setuptools import setup, find_packages
from io import open
import re


def get_version(filename="django_nvd3/__init__.py", varname="__version__"):
Expand Down Expand Up @@ -33,7 +32,7 @@ def readfile(filename):
author_email='[email protected]',
license='MIT',
zip_safe=False,
packages=["django_nvd3"],
packages=find_packages(include=['django_nvd3', 'django_nvd3.*']),
install_requires=["Django", "python-nvd3"],
test_suite='tests',
classifiers=[
Expand Down
2 changes: 1 addition & 1 deletion update_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ sed -i -e "s/version = '.*'/version = '$1'/g" docs/source/conf.py
git commit -a -m "Update to version v$1"
git flow release finish $1
python setup.py sdist
twine upload dist/django-nvd3-$1.tar.gz
twine upload dist/django-nvd3-$1.tar.gz -r django_nvd3
git push origin develop; git push origin master; git push --tags

0 comments on commit 0b9c3bd

Please sign in to comment.