From 1ffd814f928a0805877b89dc76e0dd4c7eb19148 Mon Sep 17 00:00:00 2001 From: Frappe PR Bot Date: Tue, 10 Mar 2026 14:48:03 +0000 Subject: [PATCH] chore(release): Bumped to Version 15.101.0 # [15.101.0](https://github.com/frappe/erpnext/compare/v15.100.2...v15.101.0) (2026-03-10) ### Bug Fixes * **accounts:** compute tax net_amount in JS controller ([6ad84d6](https://github.com/frappe/erpnext/commit/6ad84d66cc38e20eba9135ac03e20bbb61e03b88)) * **accounts:** round and convert net_amount to company currency in JS tax controller ([516ad90](https://github.com/frappe/erpnext/commit/516ad9021b4ea102f2571da49c7bb2793a24f13f)) * balance qty for inv dimension ([6898d70](https://github.com/frappe/erpnext/commit/6898d703821b8c488fb30da1d8666f424f656ec6)) * better validation message for Purchase Invoice with Update Stock ([b7fd9ae](https://github.com/frappe/erpnext/commit/b7fd9aea6a5e1c37baace45874e38467d8f9f6cb)) * client-side taxes calculation ([#44510](https://github.com/frappe/erpnext/issues/44510)) ([717c5b2](https://github.com/frappe/erpnext/commit/717c5b25eb22a1936ecfde6dc979ab8f20670bd4)), closes [#44328](https://github.com/frappe/erpnext/issues/44328) * correct logic for repair cost in asset repair ([c71557f](https://github.com/frappe/erpnext/commit/c71557f4321259e15877c97a3f9862f8dcba0793)) * disallow all actions on job card if work order is closed ([7b2e483](https://github.com/frappe/erpnext/commit/7b2e4832aa5c306431d63d343bdeafd876f2974c)) * enforce permission check for purchase invoice and update test to use service expense account ([a6dd078](https://github.com/frappe/erpnext/commit/a6dd07802ac0569577826357d42977acf32aebc5)) * **gross-profit:** apply precision-based rounding to grouped totals ([b59dc17](https://github.com/frappe/erpnext/commit/b59dc173b8cf340b3ccc06a21d3f2561dad35c4d)) * **help:** escape query (backport [#53192](https://github.com/frappe/erpnext/issues/53192)) ([#53194](https://github.com/frappe/erpnext/issues/53194)) ([ba4a99b](https://github.com/frappe/erpnext/commit/ba4a99b22c782bace427bfbd11b6b17fab09aabc)) * **manufacturing:** ignore sales order validation for subassembly item ([624d1d4](https://github.com/frappe/erpnext/commit/624d1d47591eb57f14cc2b077875caf6f07e32a8)) * **manufacturing:** show returned qty in progress bar ([260d87a](https://github.com/frappe/erpnext/commit/260d87a80c086669324a4726b9b5797ce17a5b16)) * removed non existent patch ([fd8fac7](https://github.com/frappe/erpnext/commit/fd8fac7d40a90a29f7ca40e0e1b88469cbe1467e)) * **selling:** update delivery date in line items ([dfbb3e9](https://github.com/frappe/erpnext/commit/dfbb3e97a8280636bf8d14ae88b7ffc436699a37)) * set default repair cost to 0 if no value is returned ([0b1746a](https://github.com/frappe/erpnext/commit/0b1746a4c8e4d4109c06ada55a16d3b7cca95027)) * skip asset sale processing for internal transfer invoices ([a7e8f31](https://github.com/frappe/erpnext/commit/a7e8f31f5605c85f79069f62f46078a79e93039d)) * stock balance report qty ([180e232](https://github.com/frappe/erpnext/commit/180e232eb0451b5f10aa6792a2ca5c7ebc668e1c)) * **test:** ensure warehouse is consistently referenced in asset repair tests ([ed428ce](https://github.com/frappe/erpnext/commit/ed428ceb1c271da5f6018583377258e0b7c2ce7c)) * **test:** include warehouse parameter in asset repair test case ([bcc542b](https://github.com/frappe/erpnext/commit/bcc542b1f941ed77220e8d0bc8ca0806d54dca92)) * updating costing based on employee change in timesheet ([be59810](https://github.com/frappe/erpnext/commit/be598108b672f75cfabab310f421ac6df1d822d7)) * validation for cancellation ([c142a2b](https://github.com/frappe/erpnext/commit/c142a2be9c8270175c007e0b530de8f2a39425a3)) ### Features * allowing rate modification in update item in quotation (backport [#53147](https://github.com/frappe/erpnext/issues/53147)) ([#53150](https://github.com/frappe/erpnext/issues/53150)) ([072ab8d](https://github.com/frappe/erpnext/commit/072ab8d5f3492501c64797ba7348c442e12e9e4d)) * **manufacturing:** show disassembled qty in progress bar ([c572a01](https://github.com/frappe/erpnext/commit/c572a019b4d1b3d80ad53cb27187b6942e3341f4)) --- erpnext/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/__init__.py b/erpnext/__init__.py index 8b9e5e9ea02..9f8b6f66113 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.100.2" +__version__ = "15.101.0" def get_default_company(user=None):