From 64ff062a88aa37c1e08535e477f66bc374e04458 Mon Sep 17 00:00:00 2001 From: Andrew Gallant Date: Wed, 26 Nov 2014 19:58:12 -0500 Subject: [PATCH] 0.2.8 --- CHANGELOG | 10 ++++++++-- nfldb/version.py | 2 +- setup.py | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 911a0b0..20452f5 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,9 @@ +0.2.8 +===== +- Fix time handling for games starting at 12pm/12:30pm. +- Depend on nflgame >= 1.2.9. + + 0.2.7 ===== - Depend on nflgame >= 1.2.8 (see nflgame#95). @@ -25,7 +31,7 @@ 0.2.4 ===== Minor refactoring and performance features. - + The refactoring is mostly confined to the SQL 'ORDER BY' generator. I had intended to make it more powerful, but that turned out to be more work than I expected. Instead, I'll settle for clearer code. @@ -59,7 +65,7 @@ sort of batching mechanism. 0.2.0 ===== Materialized view for `play`. `Query` demolition. - + ATTN: This introduces a breaking change. The `team` field can no longer be used in the `play` method. Instead, you should use the new `play_player` method to select individual player statistics belonging to diff --git a/nfldb/version.py b/nfldb/version.py index 0d13220..24f2b0c 100644 --- a/nfldb/version.py +++ b/nfldb/version.py @@ -1,4 +1,4 @@ -__version__ = '0.2.7' +__version__ = '0.2.8' __pdoc__ = { '__version__': "The version of the installed nfldb module.", diff --git a/setup.py b/setup.py index e9af02f..8389794 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ def wrapper(name, enc=ascii): return {True: enc}.get(name == 'mbcs') codecs.register(wrapper) -install_requires = ['nflgame>=1.2.8', 'psycopg2', 'enum34', 'pytz'] +install_requires = ['nflgame>=1.2.9', 'psycopg2', 'enum34', 'pytz'] try: import argparse except ImportError: