bumped version to 0.7.40

This commit is contained in:
Evgeny Fadeev 2012-03-29 17:06:38 -04:00
parent 790cae983c
commit c65c7cdb0f
6 changed files with 11 additions and 6 deletions

View File

@ -15,7 +15,7 @@ VERSION = (0, 7, 39)
#values - the package qualifier to use for pip
REQUIREMENTS = {
'akismet': 'akismet',
'django': 'django>=1.1.2',
'django': 'django==1.3.1',
'jinja2': 'Jinja2',
'coffin': 'Coffin>=0.3',
'south': 'South>=0.7.1',

View File

@ -1,8 +1,8 @@
Changes in Askbot
=================
Development version (not released yet)
--------------------------------------
0.7.40 (March 29, 2012)
-----------------------
* New data models!!! (`Tomasz Zieliński <http://pyconsultant.eu>`_)
* Made email recovery link work when askbot is deployed on subdirectory (Evgeny)
* Added tests for the CSRF_COOKIE_DOMAIN setting in the startup_procedures (Evgeny)
@ -25,6 +25,8 @@ Development version (not released yet)
* Added "reply by email" function (`Vasil Vangelovski <http://www.atomidata.com>`_)
* Enabled "ask by email" via Lamson (Evgeny)
* Tags can be optional (Evgeny)
* Fixed dependency of Django up to 1.3.1, because settings must be upgraded
for Django 1.4 (Evgeny)
0.7.39 (Jan 11, 2012)
---------------------

View File

@ -50,6 +50,8 @@ class AskByEmailFormTests(AskbotTestCase):
def test_subject_line(self):
"""loops through various forms of the subject line
and makes sure that tags and title are parsed out"""
setting_backup = askbot_settings.TAGS_ARE_REQUIRED
askbot_settings.update('TAGS_ARE_REQUIRED', True)
for test_case in SUBJECT_LINE_CASES:
self.data['subject'] = test_case[0]
form = forms.AskByEmailForm(self.data)
@ -66,6 +68,7 @@ class AskByEmailFormTests(AskbotTestCase):
form.cleaned_data['title'],
output[1]
)
askbot_settings.update('TAGS_ARE_REQUIRED', setting_backup)
def test_email(self):
"""loops through variants of the from field

View File

@ -525,7 +525,7 @@ def question(request, id):#refactor - long subroutine. display question body, an
)
data = {
'is_cacheable': is_cacheable,
'is_cacheable': False,#is_cacheable, #temporary, until invalidation fix
'long_time': const.LONG_TIME,#"forever" caching
'page_class': 'question-page',
'active_tab': 'questions',

View File

@ -1,5 +1,5 @@
akismet
django>=1.1.2
django==1.3.1
Jinja2
Coffin>=0.3
South>=0.7.1

View File

@ -1,5 +1,5 @@
akismet
django>=1.1.2
django==1.3.1
Jinja2
Coffin>=0.3
South>=0.7.1