From 4972eeed0176534af79238eb33516c804b5159f8 Mon Sep 17 00:00:00 2001 From: Frappe PR Bot Date: Tue, 25 Oct 2022 12:23:27 +0000 Subject: [PATCH] chore(release): Bumped to Version 14.13.0 # [14.13.0](https://github.com/frappe/frappe/compare/v14.12.0...v14.13.0) (2022-10-25) ### Bug Fixes * consider now datetime if the default value is now for datetime field ([b42013c](https://github.com/frappe/frappe/commit/b42013c5392eed9b3a55ec82dc3a3e9dc5f0290e)) * delete custom tables when doctype is deleted ([#18433](https://github.com/frappe/frappe/issues/18433)) ([#18471](https://github.com/frappe/frappe/issues/18471)) ([cb4d825](https://github.com/frappe/frappe/commit/cb4d825c565f1f8fef340b4676b657d7e408f54f)) * dont db_set on unsaved document ([798206c](https://github.com/frappe/frappe/commit/798206c3b39ca35f86a181f8804f429e96f67833)) * **frappe.client:** delete child doc via parent ([8806eae](https://github.com/frappe/frappe/commit/8806eae1b2c3a888f31888001cdcbc398db84224)) * google calendar sync times (system tz) ([#18458](https://github.com/frappe/frappe/issues/18458)) ([#18459](https://github.com/frappe/frappe/issues/18459)) ([871415a](https://github.com/frappe/frappe/commit/871415a45ff7c74c850313f342daa7468940644e)) * Improve Translation on To Do list view ([#18484](https://github.com/frappe/frappe/issues/18484)) ([ddec3e0](https://github.com/frappe/frappe/commit/ddec3e0e177ae0a8b45308c1b5852a72669d5dfa)) * map view doesnt open ([#18487](https://github.com/frappe/frappe/issues/18487)) ([ed54235](https://github.com/frappe/frappe/commit/ed5423517d7c0456c4168824a0749ae59d17c2f8)) * **minor:** consider lowercase value for comparision in set_formatted_input for datetime field ([a190830](https://github.com/frappe/frappe/commit/a190830281fd255b831538819d4f164051a79c07)) * only execute generator if value is not found in redis cache ([#18472](https://github.com/frappe/frappe/issues/18472)) ([#18479](https://github.com/frappe/frappe/issues/18479)) ([342edb7](https://github.com/frappe/frappe/commit/342edb76bffced042a6a7d3985bca56cc9cb950e)) * raise error if child doc not found ([0dcf5e6](https://github.com/frappe/frappe/commit/0dcf5e6a54858bd6ab7309298de823f9050a109a)) * validate website settings ([#18446](https://github.com/frappe/frappe/issues/18446)) ([#18469](https://github.com/frappe/frappe/issues/18469)) ([9e29a94](https://github.com/frappe/frappe/commit/9e29a944d777c78608ab0a57e2ddf18a8a6b6639)) ### Features * configurable default views ([#18409](https://github.com/frappe/frappe/issues/18409)) ([#18434](https://github.com/frappe/frappe/issues/18434)) ([5c0bb7e](https://github.com/frappe/frappe/commit/5c0bb7ec786a4037e8d7fb0e1457c6e53f7164ba)) * db storage usage report ([#18464](https://github.com/frappe/frappe/issues/18464)) ([#18467](https://github.com/frappe/frappe/issues/18467)) ([7cfe2d2](https://github.com/frappe/frappe/commit/7cfe2d2f59ce8e0155b4dfc8b455f62edc3b6fb3)) * meaningful report pdf name ([#18422](https://github.com/frappe/frappe/issues/18422)) ([#18480](https://github.com/frappe/frappe/issues/18480)) ([f650150](https://github.com/frappe/frappe/commit/f650150345f791bec42cda7e4349a9ab8a4fe883)) --- frappe/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/__init__.py b/frappe/__init__.py index db47af56d9..50a81bd6a4 100644 --- a/frappe/__init__.py +++ b/frappe/__init__.py @@ -42,7 +42,7 @@ from .utils.jinja import ( ) from .utils.lazy_loader import lazy_import -__version__ = "14.12.0" +__version__ = "14.13.0" __title__ = "Frappe Framework" controllers = {}