Skip to content

Commit

Permalink
Version bump to 0.10.1 and updating CHANGES.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
adamcharnock committed Sep 9, 2015
1 parent 1a1bdd3 commit 290bdb8
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 5 deletions.
16 changes: 16 additions & 0 deletions CHANGES.txt
Expand Up @@ -4,6 +4,22 @@ This file will be added to as part of each release

----

Version 0.10.1, Wed 09 Sep 2015
================================

1a1bdd365b Attempt to get build running on both 3.2 & nightlies (Adam Charnock)
521cbb411c Attempt to get build running on both 3.2 & nightlies (Adam Charnock)
43b0d23008 Updating travis coverage requirement in order to build on python 3.2 (Adam Charnock)
e4e0b2016f Updating travis coverage requirement in order to build on python nightlies (Adam Charnock)
16e560e856 updating travis build file (Adam Charnock)
82958ad76b Updating committed files to include VERSION file (plus setup.py and __init__.py to account for migration) (Adam Charnock)
9e2d98457d Fixing tests to check for version in correct location (Adam Charnock)
e1f76b8826 Adding support for releasing wheels (Adam Charnock)
a40bab22bb Documentation cleanup (Adam Charnock)
23f44a60a6 Moving version into VERSION file (Adam Charnock)
e224f634a2 Adding tests for help command (and fixing bug) (Adam Charnock)


Version 0.9.0, Sat 13 Jun 2015
===============================

Expand Down
1 change: 1 addition & 0 deletions VERSION
@@ -0,0 +1 @@
0.10.1
3 changes: 0 additions & 3 deletions seed/__init__.py
@@ -1,4 +1 @@
# It must be possible to import this file with
# none of the package's dependencies installed

__version__ = '0.9.0'
3 changes: 1 addition & 2 deletions setup.py
Expand Up @@ -3,11 +3,10 @@
from os.path import exists
from setuptools import setup, find_packages

from seed import __version__

setup(
name='seed',
version=__version__,
version=open('VERSION').read().strip(),
author='Adam Charnock',
author_email='adam@adamcharnock.com',
packages=find_packages(),
Expand Down

0 comments on commit 290bdb8

Please sign in to comment.