Skip to content

Commit

Permalink
update versioning for 1.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
kecnry committed Dec 14, 2019
1 parent 2d6756f commit 8a8d854
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion nparray/__init__.py
Expand Up @@ -5,7 +5,7 @@

from distutils.version import LooseVersion

__version__ = '1.0.0'
__version__ = '1.1.0'
version = __version__

# allow isinstance(obj, nparray.ndarray) to be similar to numpy
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -6,14 +6,14 @@
long_description = fh.read()

setup(name='nparray',
version='1.0.0',
version='1.1.0',
description='High-Level Wrappers for Building and Manipulating Numpy Arrays',
long_description=long_description,
long_description_content_type="text/markdown",
author='Kyle Conroy',
author_email='kyleconroy@gmail.com',
url='https://www.github.com/kecnry/nparray',
download_url = 'https://github.com/kecnry/nparray/tarball/1.0.0',
download_url = 'https://github.com/kecnry/nparray/tarball/1.1.0',
packages=['nparray'],
classifiers=[
"Development Status :: 5 - Production/Stable",
Expand Down

0 comments on commit 8a8d854

Please sign in to comment.