-
-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #165 from ababic/release-prep/2.4.0
Prep for 2.4.0 release
- Loading branch information
Showing
6 changed files
with
53 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ Release notes | |
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
2.4.0a | ||
2.4.0 | ||
2.3.2 | ||
2.3.1 | ||
2.3.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
from __future__ import absolute_import, unicode_literals | ||
|
||
|
||
class RemovedInWagtailMenus24Warning(DeprecationWarning): | ||
class RemovedInWagtailMenus25Warning(DeprecationWarning): | ||
pass | ||
|
||
|
||
removed_in_next_version_warning = RemovedInWagtailMenus24Warning | ||
removed_in_next_version_warning = RemovedInWagtailMenus25Warning | ||
|
||
|
||
class RemovedInWagtailMenus25Warning(PendingDeprecationWarning): | ||
class RemovedInWagtailMenus26Warning(PendingDeprecationWarning): | ||
pass | ||
|
||
|
||
class RemovedInWagtailMenus26Warning(PendingDeprecationWarning): | ||
class RemovedInWagtailMenus27Warning(PendingDeprecationWarning): | ||
pass |