From 372b0119bbd7e0de1fd836cc49636af5b8f34f9e Mon Sep 17 00:00:00 2001 From: Frappe PR Bot Date: Tue, 17 Feb 2026 14:10:20 +0000 Subject: [PATCH] chore(release): Bumped to Version 16.6.0 # [16.6.0](https://github.com/frappe/erpnext/compare/v16.5.0...v16.6.0) (2026-02-17) ### Bug Fixes * allow non-stock items while updating items ([e2183eb](https://github.com/frappe/erpnext/commit/e2183ebde9034d826e985706090ff06705529540)) * allow sequence id edit in BOM if routing is not set ([6f812cc](https://github.com/frappe/erpnext/commit/6f812ccaf5eb55fa9253f7d90093711db24aeeaa)) * better validation for negative batch ([e46e874](https://github.com/frappe/erpnext/commit/e46e8741b44c6ade4d2ae0f116657486cb05c324)) * cancel SABB if SLE cancelled from LCV ([ac90975](https://github.com/frappe/erpnext/commit/ac90975f4306d191059f4caa898fedeb9b49b043)) * consider sle for negative stock validation ([ca8f324](https://github.com/frappe/erpnext/commit/ca8f324b51ca0580742d7b7d38b46b2890b2f63a)) * consider table multiselect in delete transaction ([38679d6](https://github.com/frappe/erpnext/commit/38679d6d147b098adf83ab7466697d5752cef9ea)) * correct typos in marketing campaign custom fields function ([531bdbc](https://github.com/frappe/erpnext/commit/531bdbc7276a52c72378602d460d862eaf5d318d)) * do not allow plant floor company and warehouse to be updated ([a039c17](https://github.com/frappe/erpnext/commit/a039c176c8ae820791f14b1f3d811c052c12c6aa)) * ensure layout has Bootstrap row and column (backport [#52649](https://github.com/frappe/erpnext/issues/52649)) ([#52719](https://github.com/frappe/erpnext/issues/52719)) ([53e400c](https://github.com/frappe/erpnext/commit/53e400cca158da772242784406c51ce6bf5710a7)) * log changes made to accounts settings ([2200b9a](https://github.com/frappe/erpnext/commit/2200b9aa678f799f43539411165950d44951e7d2)) * **manufacturing:** add sales order fields in subassembly child table ([605c0db](https://github.com/frappe/erpnext/commit/605c0db976b3be2b97b42a6c22837dfece3062a9)) * **manufacturing:** set sales order references in subassembly child table ([f4b0e64](https://github.com/frappe/erpnext/commit/f4b0e646b401c920a4925acb5d81ee596168b8a4)) * **pos_invoice:** add correct depends on condition ([#52689](https://github.com/frappe/erpnext/issues/52689)) ([28592d0](https://github.com/frappe/erpnext/commit/28592d01802266b6a61eaf7df93a6ed39dd6d13b)) * prevent rows from being added to sub_assembly_items and mr_items ([80c98cd](https://github.com/frappe/erpnext/commit/80c98cdcf4838301ffa9a123472291a3529bdab2)) * production plan status ([62ea18f](https://github.com/frappe/erpnext/commit/62ea18f1cc620473b8bace56868bc982b1b7b275)) * removed lost reason detail ([3c33a19](https://github.com/frappe/erpnext/commit/3c33a19634cca72e206db05953f97e662ed2969c)) * **selling-workspace-sidebar:** changed order of pos profile ([1820c35](https://github.com/frappe/erpnext/commit/1820c35880e9ce5718493e5d8ab9dd94ada587ea)) * standalone credit/debit notes should not fetch any serial or batch by default ([dd4e186](https://github.com/frappe/erpnext/commit/dd4e1867f5f7fe3cbeca06d867b0afe124a0ad01)) * **stock:** remove hardcoded letter_head from report ([1d444e5](https://github.com/frappe/erpnext/commit/1d444e53eb16d5859295916daaa9a51561d9e0c4)), closes [#52569](https://github.com/frappe/erpnext/issues/52569) * total weight does not update when updating items ([46b5884](https://github.com/frappe/erpnext/commit/46b588442071cf8ef43e4639a61f1fe17968216e)) * wrong display_depends_on condition for item group and brand child tables ([6ae1b18](https://github.com/frappe/erpnext/commit/6ae1b18616357b511dd78f4e58f15625a664aed2)) ### Features * Negative Batch report ([8649543](https://github.com/frappe/erpnext/commit/8649543ae062addaafb99ab837f64df44f5faed2)) * show formatted currency symbol on ledger preview ([b844afe](https://github.com/frappe/erpnext/commit/b844afe0ec4c27f7c01dca8764f08df049ce37df)) --- erpnext/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/__init__.py b/erpnext/__init__.py index 49f603e7d2e..424779a2599 100644 --- a/erpnext/__init__.py +++ b/erpnext/__init__.py @@ -6,7 +6,7 @@ import frappe from frappe.model.document import Document from frappe.utils.user import is_website_user -__version__ = "16.5.0" +__version__ = "16.6.0" def get_default_company(user=None):