Skip to content

Commit

Permalink
Merge branch 'hotfix/2.7.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
tienne-B committed Feb 25, 2023
2 parents f0c1c05 + 57f5d07 commit ad94eae
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions .github/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
Change Log
==========

2.7.6
-----
*Release date: 25 February 2023*

- Fixed participant record tables causing a crash.


2.7.5
-----
*Release date: 13 February 2023*
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
# The short X.Y version.
version = '2.7'
# The full version, including alpha/beta/rc tags.
release = '2.7.5'
release = '2.7.6'

rst_epilog = """
.. |vrelease| replace:: v{release}
Expand Down
2 changes: 1 addition & 1 deletion tabbycat/participants/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def use_team_code_names(self):
return use_team_code_names(self.tournament, self.admin)

@staticmethod
def allocations_set(self, obj, admin, tournament):
def allocations_set(obj, admin, tournament):
model_related = {'Team': 'debateteam_set', 'Adjudicator': 'debateadjudicator_set'}[type(obj).__name__]
try:
qs = getattr(obj, model_related).filter(
Expand Down
4 changes: 2 additions & 2 deletions tabbycat/settings/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
# Version
# ==============================================================================

TABBYCAT_VERSION = '2.7.5'
TABBYCAT_VERSION = '2.7.6'
TABBYCAT_CODENAME = 'Pixie-bob'
READTHEDOCS_VERSION = 'v2.7.5'
READTHEDOCS_VERSION = 'v2.7.6'

# ==============================================================================
# Internationalization and Localization
Expand Down

0 comments on commit ad94eae

Please sign in to comment.