Skip to content

Commit

Permalink
Updating CHANGELOG for 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
David Czarnecki committed Jun 16, 2015
1 parent 9cf402e commit 4783ffc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
# CHANGELOG

## 3.4.0 (2015-06-16)

* Allow a Redis connection to be passed in the Leaderboard initializer using the `redis_connection` option.

## 3.3.0 (2015-03-20)

* Similar fix to one found in the [Ruby leaderboard](https://github.com/agoragames/leaderboard) library. Fixes TieRankingLeaderboard doesn't rank if the score is 0.
Expand Down
2 changes: 1 addition & 1 deletion leaderboard/leaderboard.py
Expand Up @@ -14,7 +14,7 @@ def grouper(n, iterable, fillvalue=None):


class Leaderboard(object):
VERSION = '3.3.0'
VERSION = '3.4.0'
DEFAULT_PAGE_SIZE = 25
DEFAULT_REDIS_HOST = 'localhost'
DEFAULT_REDIS_PORT = 6379
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -9,7 +9,7 @@

setup(
name = 'leaderboard',
version = "3.3.0",
version = "3.4.0",
author = 'David Czarnecki',
author_email = "dczarnecki@agoragames.com",
packages = ['leaderboard'],
Expand Down
2 changes: 1 addition & 1 deletion test/leaderboard/leaderboard_test.py
Expand Up @@ -18,7 +18,7 @@ def tearDown(self):
Leaderboard.MEMBER_DATA_KEY = 'member_data'

def test_version(self):
Leaderboard.VERSION.should.equal('3.3.0')
Leaderboard.VERSION.should.equal('3.4.0')

def test_init_with_defaults(self):
'name'.should.equal(self.leaderboard.leaderboard_name)
Expand Down

0 comments on commit 4783ffc

Please sign in to comment.