django-bingo 1.4.0 (2014-02-27):
	Attention: when updating from an older version, you will need south
	to migrate the database.
	* new: added a "description" field to Word model, which is shown as
	  title="..." attribute on bingo fields.
	* new: added a "description" field to Game model, which can be set when
	  creating the first board of a game.
	* performance: reduced querys to get the number of votes for a Word in a Game
	* improved: the bingo page is reloaded after the game is expired, so it
	  stops polling for new votes.
	* performance: update the last_used timestamp with .update() instead of
	  .save(), which avoids saving the whole object, when only the timestamp
	  has changed.
	* performance: reduced number of queries when creating board lists.
	* style: some style fixes.
	* new: option to rate the show (not the board!)
	* improved: [-] veto buttons are now toggle buttons (veto/neutral)

django-bingo 1.3.2 ():
       * added: MANIFEST.in to include package_data in source distributions

django-bingo 1.3.1 (2014-01-21):
       * fix: avoid creating duplicate BingoBoards / Games

django-bingo 1.3.0 (2013-11-26):
	* fix: mark "my board" on the game page, too.
	* new: added a light theme, which overrides the dark theme, which can be
	  added to the theme switcher, when the dark theme is the default THEME.
	* improved: title-text for board thumbnails with creation time. alt-text
	  with board_id.
	* improved: board thumbnails switch between voted / marked on mouseover.
	* new: VOTE_START_TIME allows to set a time between GAME_START_TIMES[0]
	  and GAME_END_TIME, after which voting will be activated. This can be
	  used to allow board creation before the game starts, but disable early
	  votes.
	* new: added a footer.

django-bingo 1.2.1 (2013-10-03):
	* fix: each BingoBoard was missing one of the words, which are not on the board.

django-bingo 1.2.0 (2013-09-27):
	* new feature: show boards as thumbnails in the board list.
	* changed: removed is_active. to set a Word to inactive, just remove it from all sites.
	* changed: added "unique" constraint to field Word.word.
	* improved: added some more list-columns and list-filters in the admin interface.
	* new feature: implemented theme support
	  * THEME = "somewhere/myfile.css" is the path for a site-theme
	  * THEMES = (('name', 'path/to/file.css'), ...) are themes shown in a theme chooser
	  * new dark theme included. use "bingo/themes/dark.css" as path.
	* Note: you now need to add TEMPLATE_CONTEXT_PROCESSORS to your config, see the README.

django-bingo 1.1.1 (2013-09-21):
	* fixed: GAME_END_TIME did not stop currently running games

django-bingo 1.1.0 (2013-09-14):
	* performance: optimized queries by using select_related().
	* performance: implemented a vote cache, which avoids a lot of queries.
	* style: use "background-attachment: fixed" for the background image.
	* pep8: urls.py is now pep8 compliant.
