From b340d7c6bb9595b466290d1f8d918f3c69fa477f Mon Sep 17 00:00:00 2001 From: Frappe PR Bot Date: Wed, 11 Feb 2026 04:58:18 +0000 Subject: [PATCH] chore(release): Bumped to Version 15.97.0 # [15.97.0](https://github.com/frappe/erpnext/compare/v15.96.1...v15.97.0) (2026-02-11) ### Bug Fixes * Added a missing option to the currency field (backport [#52528](https://github.com/frappe/erpnext/issues/52528)) ([#52586](https://github.com/frappe/erpnext/issues/52586)) ([a6f5b88](https://github.com/frappe/erpnext/commit/a6f5b88f9b275c2122dc1c23cee3b86a7f3118b4)) * **buying:** add supplier group link filters in field level ([436cb8d](https://github.com/frappe/erpnext/commit/436cb8dbfc2dca2be6abe7021b1a7bff21b447a7)) * email campaign timeout issue (backport [#51994](https://github.com/frappe/erpnext/issues/51994)) ([#52555](https://github.com/frappe/erpnext/issues/52555)) ([6c9681b](https://github.com/frappe/erpnext/commit/6c9681ba4cdbb50edfe66ce0451a19c221adb532)) * enabling skip delivery option for order type maintenance ([a8f05ca](https://github.com/frappe/erpnext/commit/a8f05cadea5b744d1f687345ac2623e301c9921d)) * **gross profit report:** translate column Sales Invoice ([4e910d8](https://github.com/frappe/erpnext/commit/4e910d8a69427e991d564cf6805befbe9310b11c)) * **gross-profit:** handle item group filters ([7cd9de2](https://github.com/frappe/erpnext/commit/7cd9de211f10fcca4f13dfbda0bfc7d668ae5d4c)) * **gross-profit:** handle returns outside sale period ([303dac2](https://github.com/frappe/erpnext/commit/303dac262cd023e70fbed0d4aaf8ae780789de16)) * handle gross profit and percentage for return invoices ([bde19ab](https://github.com/frappe/erpnext/commit/bde19ab0101aaa9d81f8cc271e4b9ded995b1674)) * **manufacturing:** fix chart period keys ([99f3a7e](https://github.com/frappe/erpnext/commit/99f3a7e4cf1c9996a0afccccd9f0d7daf64ce245)) * **manufacturing:** handle None value for actual_end_date ([f965b35](https://github.com/frappe/erpnext/commit/f965b352c8817ce685dfb64672127020181e5dcd)) * **map_current_doc:** prevent mutation of query args in get_query (backport [#52202](https://github.com/frappe/erpnext/issues/52202)) ([#52583](https://github.com/frappe/erpnext/issues/52583)) ([9519773](https://github.com/frappe/erpnext/commit/9519773c5c64014ceca4662fdb667ccbda110dee)) * merge taxes in purchase receipt when get items from multiple purchase invoices ([#51422](https://github.com/frappe/erpnext/issues/51422)) ([68338ab](https://github.com/frappe/erpnext/commit/68338abe07b52479a4235fd4bf3a81c92bba5db6)) * **quotation:** ignore zero ordered_qty ([ad92c02](https://github.com/frappe/erpnext/commit/ad92c021f73449702f9d8ea2c27c0ab88aa51f10)) * rate comparison in stock reco ([cacca81](https://github.com/frappe/erpnext/commit/cacca812ed96076d6b55ccfb54f84534c69169ed)) * remove incorrect validation from email digest throwing spurious error (backport [#51827](https://github.com/frappe/erpnext/issues/51827)) ([#52582](https://github.com/frappe/erpnext/issues/52582)) ([b034f3d](https://github.com/frappe/erpnext/commit/b034f3d3db8947bf5e9f89a3bb625b5759a44581)) * resolve conflicts ([36e2cf4](https://github.com/frappe/erpnext/commit/36e2cf49f359cb59bb52e5ebdaf0327cf446c7b5)) * return None instead of 0 if valuation rate is falsy ([195f020](https://github.com/frappe/erpnext/commit/195f02063630b8163fe3eba8b5cf72b8ebd4d2e8)) * stock balance report issue ([bda7220](https://github.com/frappe/erpnext/commit/bda7220b701fe35abc8704a69f250b0fac19da63)) * **stock:** add is group filter for warehouse fields ([5b7ee0a](https://github.com/frappe/erpnext/commit/5b7ee0af661131cd4a3959b498fbe59924e568bd)) * **stock:** ignore pos reserved batches for stock levels ([635a421](https://github.com/frappe/erpnext/commit/635a4218078d9353a251bee7917d606fca857aba)) * **stock:** inward stock for pick list test record ([5a42ff0](https://github.com/frappe/erpnext/commit/5a42ff0c3cd901069278d82682f378ce6142b3fb)) * **stock:** set source warehouse for issue type ([19dca36](https://github.com/frappe/erpnext/commit/19dca36dece3baa4fd916e846d68f74779138884)) * **stock:** update target field attribute ([9cfd704](https://github.com/frappe/erpnext/commit/9cfd704eef992bcdea2ad902aae1e541b78cdc86)) * validate asset movement transaction date (backport [#52340](https://github.com/frappe/erpnext/issues/52340)) ([#52560](https://github.com/frappe/erpnext/issues/52560)) ([eea8cb5](https://github.com/frappe/erpnext/commit/eea8cb58853c6baae6cbddf75319496d30305352)) ### Features * allow negative stock for the batch item ([4c094c3](https://github.com/frappe/erpnext/commit/4c094c3d8614d7d49cbdbfad3d9b97317fda39df)) --- erpnext/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/__init__.py b/erpnext/__init__.py index 862c1758fb2..39e633a98c6 100644 --- a/erpnext/__init__.py +++ b/erpnext/__init__.py @@ -4,7 +4,7 @@ import inspect import frappe from frappe.utils.user import is_website_user -__version__ = "15.96.1" +__version__ = "15.97.0" def get_default_company(user=None):