From 25d03db22f2924f6b3d9da390f37cd257cb28db4 Mon Sep 17 00:00:00 2001 From: Jonathan Helmus Date: Mon, 12 Jan 2015 20:41:17 -0600 Subject: [PATCH] v0.5 --- doc/source/conf.py | 4 ++-- nmrglue/__init__.py | 2 +- setup.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index 3bee28f4..5d42b024 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -47,7 +47,7 @@ # General information about the project. project = u'nmrglue' -copyright = u'2010-2013, Jonathan J. Helmus' +copyright = u'2010-2015, Jonathan J. Helmus' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -290,5 +290,5 @@ def linkcode_resolve(domain, info): fn = relpath(fn, start=dirname(nmrglue.__file__)) - return "http://github.com/jjhelmus/nmrglue/blob/master/nmrglue/%s%s" % ( + return "http://github.com/jjhelmus/nmrglue/blob/v0.5/nmrglue/%s%s" % ( fn, linespec) diff --git a/nmrglue/__init__.py b/nmrglue/__init__.py index b893dfff..95cc7271 100644 --- a/nmrglue/__init__.py +++ b/nmrglue/__init__.py @@ -3,4 +3,4 @@ from .util import * from .analysis import * -__version__ = '0.5-dev' +__version__ = '0.5' diff --git a/setup.py b/setup.py index 03daa6ec..5208c5f6 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( name='nmrglue', - version='0.5-dev', # change this in nmrglue/__init__.py also + version='0.5', # change this in nmrglue/__init__.py also description='A module for working with NMR data in Python', long_description=long_description, url='http://www.nmrglue.com', @@ -30,7 +30,7 @@ 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', - 'Programming Language :: Python :: 3.4' + 'Programming Language :: Python :: 3.4', 'Topic :: Scientific/Engineering', 'Operating System :: MacOS :: MacOS X', 'Operating System :: Microsoft :: Windows',