Skip to content

Commit d526fd3

Browse files
committed
Bump version and add travis build status to readme
1 parent 305ebf4 commit d526fd3

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ Underscore.py is a python port of excellent javascript library underscore.js
1717

1818
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.
1919

20+
[![Build Status](https://travis-ci.org/serkanyersen/underscore.py.png?branch=master)](https://travis-ci.org/serkanyersen/underscore.py)
21+
2022
## Installing
2123

2224
Install from pypi

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from distutils.core import setup
44

55
setup(name='underscore.py',
6-
version='0.1.3',
6+
version='0.1.5',
77
description='Port of underscore.js into python',
88
author='Serkan Yersen',
99
author_email='[email protected]',

src/underscore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class underscore(object):
6161
""" Passed object
6262
"""
6363

64-
VERSION = "0.1.3"
64+
VERSION = "0.1.5"
6565

6666
chained = False
6767
""" If the object is in a chained state or not

0 commit comments

Comments
 (0)