From 2574c4c18c2530147310151051c860a515811891 Mon Sep 17 00:00:00 2001 From: Frappe PR Bot Date: Tue, 3 Mar 2026 17:57:48 +0000 Subject: [PATCH] chore(release): Bumped to Version 15.100.0 # [15.100.0](https://github.com/frappe/erpnext/compare/v15.99.1...v15.100.0) (2026-03-03) ### Bug Fixes * **accounts receivable:** include invoice payment terms template (backport [#51940](https://github.com/frappe/erpnext/issues/51940)) ([#53105](https://github.com/frappe/erpnext/issues/53105)) ([f5f40db](https://github.com/frappe/erpnext/commit/f5f40dbcc3cbda588c42344ff429745ef4d2b647)) * allow allowed roles to bypass over billing validation ([8e59fe9](https://github.com/frappe/erpnext/commit/8e59fe90cc6d2af7f4b2e1c6e2d5a95444738719)) * correct sle voucher_type comparison in get_ref_doctype ([a587b6a](https://github.com/frappe/erpnext/commit/a587b6a57c8c53c55cfe53341146db3e11981eda)) * ensure cache is cleared on fiscal year update and trash ([7278166](https://github.com/frappe/erpnext/commit/7278166b2c5caa88a13f7b052d52d4b2127b5d3b)) * ensure contacts are processed only if present in create_prospect_against_crm_deal ([e2b6179](https://github.com/frappe/erpnext/commit/e2b6179b17998e5f180f8966ead5a7cd6ae523b2)) * handle html email template separately in RFQ to avoid jinja context error ([90169a3](https://github.com/frappe/erpnext/commit/90169a39bbc787fd4774ce5b69f7dfeabc8de715)) * item description html validation error ([3c6a120](https://github.com/frappe/erpnext/commit/3c6a120c5c041fc1f40753520560f160a6dd8696)) * old stock reco entries causing issue in the stock balance report ([b712467](https://github.com/frappe/erpnext/commit/b7124670491f1f5a7cdeb2dd2becf231fa6c6ea6)) * opening qty in stock balance ([470a9b3](https://github.com/frappe/erpnext/commit/470a9b38b1e08bad784827d4383a9d64b294dd58)) * **payment entry:** round unallocated amount ([76a1907](https://github.com/frappe/erpnext/commit/76a19076bf50cdf5d8629d58d78649cc1f8870b8)) * populate mr owner and set po owner as fallback ([c1f2991](https://github.com/frappe/erpnext/commit/c1f29916941ce5d4f0233ea6809bf907c56cc4d9)) * **pricing_rule:** strict validation of `transaction_type` ([5f82db2](https://github.com/frappe/erpnext/commit/5f82db200e91bf703dfbaf5cb07e0325c6c2239e)) * resolve conflicts ([6846f02](https://github.com/frappe/erpnext/commit/6846f02cea8bc2bbf12dcd36d3f946e45de87fd7)) * **selling:** handle selling price validation for FG item ([d5cc51b](https://github.com/frappe/erpnext/commit/d5cc51b426984a34b1ed654f81ea880a8473dc4f)) * serial no status for Disassemble entry ([8ce541b](https://github.com/frappe/erpnext/commit/8ce541bf46cf3265b2697454086f1327a33d1224)) * set company based expense account ([74e71f3](https://github.com/frappe/erpnext/commit/74e71f386807bc87a92a5c9176cdd5925198749d)) * **stock:** validate company for receipt documents and expense accounts ([4462088](https://github.com/frappe/erpnext/commit/44620884c1ca89bf62798b15148a75834278e489)) * **trial-balance:** totals with filter `show_group_accounts` enabled ([eabaef2](https://github.com/frappe/erpnext/commit/eabaef2f0b68336e4af405c63f49194e58670802)) * use conversion factor when creating stock entry from pick list ([f2e1482](https://github.com/frappe/erpnext/commit/f2e1482f63305de05ac83a3b04b4bc84be1198ed)) * use stock qty instead of qty when creating stock entry from MR ([2984f79](https://github.com/frappe/erpnext/commit/2984f79a69026d2d7a9488625bb3233e3679fa48)) * use the correct precision value in stock reco ([6d726e4](https://github.com/frappe/erpnext/commit/6d726e4b64a4d10893c53757d5fe4bd0e091607b)) * validate warehouse of SABB for draft entry ([d5e2515](https://github.com/frappe/erpnext/commit/d5e25153f8985fc5221c78de2fc2afd9ec6553e6)) * Variant Items, List View Enabled to Variant Status Change ([#38468](https://github.com/frappe/erpnext/issues/38468)) ([25b1690](https://github.com/frappe/erpnext/commit/25b169059d5da49de5e2d0c269956d5798defa7b)) * voucher detail no in SABB ([6e5738e](https://github.com/frappe/erpnext/commit/6e5738e95c6e2955621c0380ecd9cc0bb9f872cf)) ### Features * UOM query filter for opportunity items ([f6a05ec](https://github.com/frappe/erpnext/commit/f6a05ec85e867dbda87f559bcb19c37f37b11a03)) ### Performance Improvements * add index on reference_purchase_receipt column ([0766c0e](https://github.com/frappe/erpnext/commit/0766c0ea4322433776722d20fe8c9b3605bfed23)) --- erpnext/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/__init__.py b/erpnext/__init__.py index 467aa3a3c59..9717f0d6f11 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.99.1" +__version__ = "15.100.0" def get_default_company(user=None):