Skip to content
This repository has been archived by the owner on Aug 27, 2023. It is now read-only.

Commit

Permalink
Merge tag '0.5.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
stevearc committed Dec 7, 2016
2 parents c8d04df + ebee9dc commit 99b8d5e
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.5.0
current_version = 0.5.1
tag_name = {new_version}
files = setup.py doc/conf.py flywheel/__init__.py
commit = True
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

0.5.1
-----
* Feature: Add ``update_schema()`` method to Engine (:pr:`53`)

0.5.0
-----
* **Breakage**: Removing support for overflow fields. The only fields flywheel will care about now are those that are explicitly set as a Field()
Expand Down
4 changes: 4 additions & 0 deletions doc/changes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

0.5.1
-----
* Feature: Add ``update_schema()`` method to Engine (:pr:`53`)

0.5.0
-----
* **Breakage**: Removing support for overflow fields. The only fields flywheel will care about now are those that are explicitly set as a Field()
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
copyright = u'2013, Steven Arcangeli'
github_user = u'stevearc'

release = '0.5.0'
release = '0.5.1'
version = '.'.join(release.split('.')[:2])

exclude_patterns = ['_build']
Expand Down
4 changes: 2 additions & 2 deletions doc/topics/develop.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ To get started developing flywheel, run the following command:

.. code-block:: bash
wget https://raw.github.com/mathcamp/devbox/0.1.0/devbox/unbox.py && \
python unbox.py git@github.com:mathcamp/flywheel
wget https://raw.github.com/stevearc/devbox/0.1.0/devbox/unbox.py && \
python unbox.py git@github.com:stevearc/flywheel
This will clone the repository and install the package into a virtualenv

Expand Down
2 changes: 1 addition & 1 deletion flywheel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
from .engine import Engine
from .query import DuplicateEntityException, EntityNotFoundException

__version__ = '0.5.0'
__version__ = '0.5.1'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
if __name__ == "__main__":
setup(
name='flywheel',
version='0.5.0',
version='0.5.1',
description="SQLAlchemy-style ORM for Amazon's DynamoDB",
long_description=README + '\n\n' + CHANGES,
classifiers=[
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ deps =
nose
mock
commands =
{envpython} setup.py nosetests
{envpython} setup.py nosetests --verbosity=2

[testenv:py26]
deps =
Expand All @@ -22,7 +22,7 @@ deps =
pylint==1.5.1
pep8
commands =
coverage run --source=flywheel --branch setup.py nosetests
coverage run --source=flywheel --branch setup.py nosetests --verbosity=2
pylint --rcfile=.pylintrc flywheel tests
pep8 flywheel tests
python setup.py check --restructuredtext -s

0 comments on commit 99b8d5e

Please sign in to comment.