From 8951efb457f47b4891fbec1ed39d65c769872125 Mon Sep 17 00:00:00 2001 From: Frappe PR Bot Date: Tue, 25 Mar 2025 13:50:33 +0000 Subject: [PATCH] chore(release): Bumped to Version 15.55.0 # [15.55.0](https://github.com/frappe/erpnext/compare/v15.54.5...v15.55.0) (2025-03-25) ### Bug Fixes * add base_outstanding and base_paid_amount in payment schedule table ([412e6be](https://github.com/frappe/erpnext/commit/412e6be5025d5d451902ced7848f9602ae1786ab)) * add patch to update base_outstanding and base_paid_amount ([c3221c4](https://github.com/frappe/erpnext/commit/c3221c4e9319ba1e960d8aa272484a4c629d96dd)) * correct accumulated depreciation calculation for disposed assets (backport [#46660](https://github.com/frappe/erpnext/issues/46660)) ([#46661](https://github.com/frappe/erpnext/issues/46661)) ([4df5f18](https://github.com/frappe/erpnext/commit/4df5f18d850a2d4b9f595825c1290b3392ba1778)) * correct invoice order in payment reconcillaiton ([2a70791](https://github.com/frappe/erpnext/commit/2a70791bbaeaff33f469cf3014932367c8762059)) * customer credit limit check based on `bypass_credit_limit_check` in Journal Entry ([6c443bd](https://github.com/frappe/erpnext/commit/6c443bd85aba5cc8e911219da4924ab63223d2ed)) * date added to wrong patch ([2bfaf64](https://github.com/frappe/erpnext/commit/2bfaf64fffed8e9e7eeb43c3f35175bc068c8fd1)) * do not validate if conversion rate is 1 for different currency ([391b5c4](https://github.com/frappe/erpnext/commit/391b5c4226616d3e2194fbf93a496b48383a0013)) * don't filter payment entries on Bank Account in Payment Clearance ([dc3b5e2](https://github.com/frappe/erpnext/commit/dc3b5e2f3af271640715ac97e326272471bcb93d)) * **Payment Entry:** get contact details from existing contact ([#40556](https://github.com/frappe/erpnext/issues/40556)) ([f964178](https://github.com/frappe/erpnext/commit/f964178008a961ed4cd42d74e46e27cc9ce6c738)) * unwired order_by argument in get_transaction_list (backport [#46636](https://github.com/frappe/erpnext/issues/46636)) ([#46643](https://github.com/frappe/erpnext/issues/46643)) ([2ebea88](https://github.com/frappe/erpnext/commit/2ebea8866a54da4e09babd58b9c6f306e5c2ecf9)) ### Features * **accounting:** allow chart_of_account.get_chart to be whilelist ([e69c722](https://github.com/frappe/erpnext/commit/e69c7225342c8db4653aefae99e043c5f9af4e14)) * **projects:** add option to hide timesheets for project users ([#46173](https://github.com/frappe/erpnext/issues/46173)) ([3834d6f](https://github.com/frappe/erpnext/commit/3834d6fbce4a52f356c36a1915566aa7a43d99be)) * repost accounting ledger for purchase receipt ([4edfc6f](https://github.com/frappe/erpnext/commit/4edfc6f1258c7d98db125894338e951228f94cc1)) ### Performance Improvements * timeout while renaming cost center ([58eb184](https://github.com/frappe/erpnext/commit/58eb1849d79a4d1721621f26982f0145cae3f0e3)) --- erpnext/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/__init__.py b/erpnext/__init__.py index 253da831d03..92c410b9009 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.54.5" +__version__ = "15.55.0" def get_default_company(user=None):