diff --git a/CHANGELOG.md b/CHANGELOG.md index 60ad24fdd58a24a945f520fbad05382cca3f45ae_Q0hBTkdFTE9HLm1k..fd563db250cd44f133ff1ca950fa129356dd0021_Q0hBTkdFTE9HLm1k 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ Drop support of CubicWeb 4.7 and previous versions -## Version 0.2.13 (planned) +## Version 0.2.13 (2024-09-27) Fix mappers for CubicWeb 4 @@ -6,7 +6,7 @@ Fix mappers for CubicWeb 4 -## Version 0.2.12 (2024-09) +## Version 0.2.12 (2024-09-12) - Add partial support for CubicWeb 4 - Drop support for CubicWeb 3.37 diff --git a/cubicweb_jsonschema/__pkginfo__.py b/cubicweb_jsonschema/__pkginfo__.py index 60ad24fdd58a24a945f520fbad05382cca3f45ae_Y3ViaWN3ZWJfanNvbnNjaGVtYS9fX3BrZ2luZm9fXy5weQ==..fd563db250cd44f133ff1ca950fa129356dd0021_Y3ViaWN3ZWJfanNvbnNjaGVtYS9fX3BrZ2luZm9fXy5weQ== 100644 --- a/cubicweb_jsonschema/__pkginfo__.py +++ b/cubicweb_jsonschema/__pkginfo__.py @@ -6,7 +6,7 @@ modname = "cubicweb_" + cubename distname = "cubicweb-" + cubename -numversion = (0, 2, 12) +numversion = (0, 2, 13) version = ".".join(str(num) for num in numversion) license = "LGPL" diff --git a/cubicweb_jsonschema/views/y2jsl.py b/cubicweb_jsonschema/views/y2jsl.py index 60ad24fdd58a24a945f520fbad05382cca3f45ae_Y3ViaWN3ZWJfanNvbnNjaGVtYS92aWV3cy95MmpzbC5weQ==..fd563db250cd44f133ff1ca950fa129356dd0021_Y3ViaWN3ZWJfanNvbnNjaGVtYS92aWV3cy95MmpzbC5weQ== 100644 --- a/cubicweb_jsonschema/views/y2jsl.py +++ b/cubicweb_jsonschema/views/y2jsl.py @@ -21,6 +21,4 @@ from cubicweb.schema import META_RTYPES try: - from cubicweb.view import Component # TODO remove with CubicWeb 3 support -except ModuleNotFoundError: from cubicweb_web.view import Component @@ -26,4 +24,6 @@ from cubicweb_web.view import Component +except ModuleNotFoundError: # TODO remove with CubicWeb 3 support + from cubicweb.view import Component from cubicweb_jsonschema import CREATION_ROLE