diff --git a/CHANGELOG.md b/CHANGELOG.md index c5de843525c9759de0738271855cb1d7a341c482_Q0hBTkdFTE9HLm1k..fdb055816d3a46d3590c2577886c7852e8dc1f2b_Q0hBTkdFTE9HLm1k 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +## Version 0.14.0 (2024-02-23) +### 🎉 New features + +- *BREAKING CHANGE* allow enabling jwt auth using cubicweb.includes pyramid option +- *BREAKING CHANGE* enable login/logout routes using cubicweb.includes pyramid option + +### 📠Documentation + +- fix typo + +### 🤖 Continuous integration + +- force using python:3.9-bullseye image for py3 + +### 🤷 Various changes + +- simplify test assertion +- try to reuse old cookie + ## Version 0.13.0 (2024-02-02) ### 🎉 New features diff --git a/cubicweb_api/__pkginfo__.py b/cubicweb_api/__pkginfo__.py index c5de843525c9759de0738271855cb1d7a341c482_Y3ViaWN3ZWJfYXBpL19fcGtnaW5mb19fLnB5..fdb055816d3a46d3590c2577886c7852e8dc1f2b_Y3ViaWN3ZWJfYXBpL19fcGtnaW5mb19fLnB5 100644 --- a/cubicweb_api/__pkginfo__.py +++ b/cubicweb_api/__pkginfo__.py @@ -20,7 +20,7 @@ modname = "cubicweb_api" distname = "cubicweb-api" -numversion = (0, 13, 0) +numversion = (0, 14, 0) version = ".".join(str(num) for num in numversion) license = "LGPL"