Skip to content

Commit

Permalink
Bumping version to 1.1.7. Updating CHANGELOG.
Browse files Browse the repository at this point in the history
  • Loading branch information
czarneckid committed Aug 26, 2014
1 parent 47b1c53 commit 88d8dcc
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@

master
======

1.1.7
=====

Fixes #2, https://github.com/agoragames/python-leaderboard/pull/2. Fixed a
bug where withscores was passed incorrectly on ascending calls.

Changing redis requirements to ensure that ConnectionPool accepts a host
keyword argument

Expand All @@ -20,7 +27,7 @@ Member identifiers are cast to strings where appropriate

Uses connection pooling for each unique (host,port,db) connection

Renamed `add_member` to `rank_member` to clarify that it applies to both
Renamed `add_member` to `rank_member` to clarify that it applies to both
new and existing members

Added `clear` to delete a leaderboard and its members
Expand Down
2 changes: 1 addition & 1 deletion leaderboard/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


class Leaderboard(object):
VERSION = '1.1.6'
VERSION = '1.1.7'
DEFAULT_PAGE_SIZE = 25
DEFAULT_REDIS_HOST = 'localhost'
DEFAULT_REDIS_PORT = 6379
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='leaderboard',
version='1.1.6',
version='1.1.7',
author='Ola Mork, Aaron Westendorf, Vitaly Babiy, Brad LaFountain',
author_email="ola@agoragames.com, aaron@agoragames.com, vbabiy@agoragames.com, blafountain@majorleaguegaming.com",
url='https://github.com/agoragames/python-leaderboard',
Expand Down

0 comments on commit 88d8dcc

Please sign in to comment.