Skip to content

Commit

Permalink
0.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
BurntSushi committed Nov 27, 2014
1 parent abe27b3 commit 64ff062
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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).
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion nfldb/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.2.7'
__version__ = '0.2.8'

__pdoc__ = {
'__version__': "The version of the installed nfldb module.",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 64ff062

Please sign in to comment.