From d8dab986fa7bdda88df74906df61df4c81e2c8b0 Mon Sep 17 00:00:00 2001 From: Frappe PR Bot Date: Wed, 19 Nov 2025 02:58:17 +0000 Subject: [PATCH] chore(release): Bumped to Version 15.89.0 # [15.89.0](https://github.com/frappe/erpnext/compare/v15.88.1...v15.89.0) (2025-11-19) ### Bug Fixes * add cancelled option in status field ([623a0a9](https://github.com/frappe/erpnext/commit/623a0a932ec88d613256024b5fdade1a261df86d)) * add condition for allow negative stock in pos (backport [#50369](https://github.com/frappe/erpnext/issues/50369)) ([#50600](https://github.com/frappe/erpnext/issues/50600)) ([2d6640a](https://github.com/frappe/erpnext/commit/2d6640ac61fc8fdf51649b54f9b55dbce879b2eb)) * add doctype parameter to lead details for correct company details ([f0eac47](https://github.com/frappe/erpnext/commit/f0eac4703726e00f151231b9694f40a4b8048520)) * **asset repair:** validate pi status ([2db91ee](https://github.com/frappe/erpnext/commit/2db91ee67efe95f97528277636245d124eb275cc)) * back calcalute total amount from rate and tax_amount in tax withholding details report ([5728299](https://github.com/frappe/erpnext/commit/57282999ad70b543aefb0e372b85675eb4b91bfb)) * construct batch_nos and serial_nos to avoid NoneType error ([0a0177c](https://github.com/frappe/erpnext/commit/0a0177cb9e1af611c0d596eca97de38afa8d595c)) * correct profit after tax calculation by reducing expenses from income ([627b34a](https://github.com/frappe/erpnext/commit/627b34a120f8086d33967b5062bfa1b9dd85dbe5)) * current qty in stock reco ([b4b8459](https://github.com/frappe/erpnext/commit/b4b8459f2c8942ae3a1cfdaccfeb46c3fbbb3c6e)) * enable allow_negative_stock settings ([2a5c9b4](https://github.com/frappe/erpnext/commit/2a5c9b469c61995a6850dee32f5572541dc87223)) * **financial reports:** set fiscal year associated with the default company ([ac40b59](https://github.com/frappe/erpnext/commit/ac40b596651fa1e206a7f2a481d7af7dbdc1add8)) * first and last name in supplier quick entry (backport [#50510](https://github.com/frappe/erpnext/issues/50510)) ([#50514](https://github.com/frappe/erpnext/issues/50514)) ([3b636d5](https://github.com/frappe/erpnext/commit/3b636d5db78feada2af765cbb97065dc16824e86)) * **general_ledger:** add translation for accounting dimension ([799119a](https://github.com/frappe/erpnext/commit/799119ad3ee843e911cd1aa0366b252855984f2a)) * handle NoneType object error for product bundle ([2b7abfb](https://github.com/frappe/erpnext/commit/2b7abfb34b6a3446d9efb990bc88fc59b59e323f)) * improve precision in tax amount calculations in tax withholding details report ([c150e57](https://github.com/frappe/erpnext/commit/c150e5795e9fbcf4132ac1c64f9d11c9c7a0a0c2)) * on changes of paid from/to account fetch company bank account ([3d8a344](https://github.com/frappe/erpnext/commit/3d8a344173131e5265b482a7df51115d4cab377e)) * **period closing voucher:** add title to error log ([#50498](https://github.com/frappe/erpnext/issues/50498)) ([33962ac](https://github.com/frappe/erpnext/commit/33962ac995381cf9da2b3b62946133489820d0b5)) * prevent pos opening entry creation for disabled pos profile ([68747b5](https://github.com/frappe/erpnext/commit/68747b5818e10cbe2a92df2b1d6f0d9e236e76e7)) * **stock-entry:** prevent default warehouse from overriding parent warehouse ([a5ec0e4](https://github.com/frappe/erpnext/commit/a5ec0e4f5079a2a9919ee245124f1f53ec20bcaf)) * unintended backported depends_on expression ([#50529](https://github.com/frappe/erpnext/issues/50529)) ([81a1628](https://github.com/frappe/erpnext/commit/81a16286a144bd45d2f1c1fcb78d57c4c9c07869)) * use dynamic account type to get average ratio balance ([a2c82b4](https://github.com/frappe/erpnext/commit/a2c82b4dc3c09da9923e92c7d62e462b262b24d7)) ### Features * Add first and last name fields to quick entry customer creation (backport [#46281](https://github.com/frappe/erpnext/issues/46281)) ([#50522](https://github.com/frappe/erpnext/issues/50522)) ([8c98f16](https://github.com/frappe/erpnext/commit/8c98f1692a4c36a99df90cc375ed96736716e7f4)) * **Company:** allow setting default sales contact, fetch into sales transaction (backport [#50159](https://github.com/frappe/erpnext/issues/50159)) ([#50599](https://github.com/frappe/erpnext/issues/50599)) ([f8294f1](https://github.com/frappe/erpnext/commit/f8294f17543283faf248ba878732d607a60f3f34)) * **Item Price:** validate UOM ([376da8d](https://github.com/frappe/erpnext/commit/376da8df0a20971caf1800d5d6bbdeece88af2cd)) * **pos:** prevent disabling POS Profile when open POS sessions exist ([87e8305](https://github.com/frappe/erpnext/commit/87e8305753d5c26371dfa6b0ad73891c3973e22d)) --- erpnext/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/__init__.py b/erpnext/__init__.py index a5783691ec3..d8f5767733f 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.88.1" +__version__ = "15.89.0" def get_default_company(user=None):