Skip to content

Releases: rero/flask-wiki

v0.3.1

13 Dec 09:29
Compare
Choose a tag to compare

Full Changelog

Fixes:

v0.3.0

11 Dec 07:35
Compare
Choose a tag to compare

Full Changelog

New features:

Fixes:

v0.2.4

01 Mar 09:55
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.2.3...v0.2.4

v0.2.3

07 Nov 07:00
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.2.2...v0.2.3

v0.2.2

07 Sep 08:49
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.2.1...v0.2.2

v0.2.1

12 Jul 09:45
Compare
Choose a tag to compare
  • Rolls back dependencies for compatibility

v0.2.0

12 Jul 09:18
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.1.0...v0.2.0

v0.1.0

19 May 14:47
@jma jma
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.0.1...v0.1.0

v0.0.1

19 Jan 09:51
@jma jma
Compare
Choose a tag to compare
ext: fix getiterator

* Methods getchildren() and getiterator() of classes ElementTree and Element
  in the ElementTree module have been removed. They were deprecated in
  Python 3.2. Use iter(x) or list(x) instead of x.getchildren() and x.iter()
  or list(x.iter()) instead of x.getiterator(). (
  Contributed by Serhiy Storchaka in bpo-36543.)
  https://docs.python.org/3.9/whatsnew/3.9.html#removed

Co-Authored-by: Peter Weber <[email protected]>