Skip to content

Commit

Permalink
Bump version and add travis build status to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
serkanyersen committed Sep 2, 2013
1 parent 305ebf4 commit d526fd3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ Underscore.py is a python port of excellent javascript library underscore.js

NOTE: It's obvious that python already has nearly all features of underscore library built-in. I'm not trying to fill any gap in python. If you are coming from JavaScript this library will provide you a familiar interface, a set of tools you already know how to use and micro templating functionality. Use it wisely and try to use built-in functions wherever possible.

[![Build Status](https://travis-ci.org/serkanyersen/underscore.py.png?branch=master)](https://travis-ci.org/serkanyersen/underscore.py)

## Installing

Install from pypi
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from distutils.core import setup

setup(name='underscore.py',
version='0.1.3',
version='0.1.5',
description='Port of underscore.js into python',
author='Serkan Yersen',
author_email='serkanyersen@gmail.com',
Expand Down
2 changes: 1 addition & 1 deletion src/underscore.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class underscore(object):
""" Passed object
"""

VERSION = "0.1.3"
VERSION = "0.1.5"

chained = False
""" If the object is in a chained state or not
Expand Down

0 comments on commit d526fd3

Please sign in to comment.