From 217e407371f889a16cb38a375a45f480a437346b Mon Sep 17 00:00:00 2001 From: Frappe PR Bot Date: Tue, 4 Oct 2022 12:13:08 +0000 Subject: [PATCH] chore(release): Bumped to Version 14.2.2 ## [14.2.2](https://github.com/frappe/erpnext/compare/v14.2.1...v14.2.2) (2022-10-04) ### Bug Fixes * (bulk transaction) key error and better error logging (backport [#32445](https://github.com/frappe/erpnext/issues/32445)) ([#32463](https://github.com/frappe/erpnext/issues/32463)) ([7a80385](https://github.com/frappe/erpnext/commit/7a8038500d862a6fcbea880fa6b12b73053abd6d)) * add non-stock item filter for `fg_item` in PO ([11f9279](https://github.com/frappe/erpnext/commit/11f92797b99679e53959e1625e22dcf49551b05d)) * add validation for non-stock item in SCR ([793fa18](https://github.com/frappe/erpnext/commit/793fa182258d8ddec55b6beb9b60208f0eaea0d5)) * asset requiring maintenance sold status and added test [v14-hotfix] ([c0a141b](https://github.com/frappe/erpnext/commit/c0a141bfcdb423c7775b85b8f8dcd0c51ea89482)) * asset tests ([6710337](https://github.com/frappe/erpnext/commit/671033755f2deedda583c51766f853fc0d1ace61)) * calculate depreciation properly on asset sale entry and scrap entry ([f5f13c4](https://github.com/frappe/erpnext/commit/f5f13c4611458121d4c26acb913fe557933b9046)) * Create accounting dimension fields in asset capitalization ([9ec0d10](https://github.com/frappe/erpnext/commit/9ec0d104a5cec46e6f1c5c8e1bdf08fcda4b40e1)) * Disbursement Account in patch to update old loans ([0973989](https://github.com/frappe/erpnext/commit/097398914eb8fedc2646e1051a994d609673aad0)) * don't allow to update `Maintain Stock` if the item has a `BOM` ([e5d1f59](https://github.com/frappe/erpnext/commit/e5d1f59d964953371f1e4fd183f2d31a7c970899)) * fetch swift_number in payment_request ([f09222a](https://github.com/frappe/erpnext/commit/f09222a9e5d0b9c9bb2ae19d912cbe700465e870)) * fix restore asset value after depreciation ([8605245](https://github.com/frappe/erpnext/commit/86052450a56eb4786bbc9caacecae9add2ae7386)) * fixes query builder order by issue in postgres (backport [#32441](https://github.com/frappe/erpnext/issues/32441)) ([#32465](https://github.com/frappe/erpnext/issues/32465)) ([8851826](https://github.com/frappe/erpnext/commit/8851826a574b7b06f034c9546534bacabbc67719)) * Incorrect TCS amount deducted in Sales Invoice ([4d51d73](https://github.com/frappe/erpnext/commit/4d51d73797fa9dd7ae6b5780fee17a5d6f9fb4d7)) * Item details fetching on making transaction from item dashboard ([db60299](https://github.com/frappe/erpnext/commit/db60299cf32d337c0f3a64ea08d82cfb6077dde6)) * not able to return sold expired batches ([9c56a5f](https://github.com/frappe/erpnext/commit/9c56a5ff7c0cf61a52920ce68cc29f4e482b862f)) * payment request make bank field Link instead of Read Only ([c8c0f34](https://github.com/frappe/erpnext/commit/c8c0f345d7e23584311ab6c15696ba00f7a07db1)) * pick list picked-qty for batch item ([32107c4](https://github.com/frappe/erpnext/commit/32107c4a79db9715b9d4eabb75f4401bafeaab22)) * refactor asset capitilization ([bad3b33](https://github.com/frappe/erpnext/commit/bad3b330f4eeb89761dcf621cfe3f95644cef030)) * searchfields as per customize form not working for Item ([f167abb](https://github.com/frappe/erpnext/commit/f167abbbfd7ccd719a2a039d8d4a32733c996ebb)) * show `Make Purchase Invoice` button based on permission ([fd86876](https://github.com/frappe/erpnext/commit/fd86876a0eaa8d17f375080d88cafda959514da8)) * supplied items added twice in Stock Entry ([d91ac5e](https://github.com/frappe/erpnext/commit/d91ac5e549264e69f4956492351b30dd9d18ef85)) * test_scrap_asset ([fd232d1](https://github.com/frappe/erpnext/commit/fd232d1db7219930317e2355a2e609ee4dc8f200)) * typo in sales_register's filter mode_of_payment (backport [#32371](https://github.com/frappe/erpnext/issues/32371)) ([#32446](https://github.com/frappe/erpnext/issues/32446)) ([1918b5c](https://github.com/frappe/erpnext/commit/1918b5c4b0e83ac2c471b6f31aac722cde7a1bc5)) * update with new Frappe color. fix [#32455](https://github.com/frappe/erpnext/issues/32455) ([#32456](https://github.com/frappe/erpnext/issues/32456)) ([3e7582f](https://github.com/frappe/erpnext/commit/3e7582f55bd88a771320ce3f2f7c77a4f879b4aa)) ### Reverts * Revert "fix: fetch swift_number in payment_request" ([d3c151f](https://github.com/frappe/erpnext/commit/d3c151f32bf2c340c546f0a799ede80977958010)) --- erpnext/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/__init__.py b/erpnext/__init__.py index a87507f4250..6aabfd33488 100644 --- a/erpnext/__init__.py +++ b/erpnext/__init__.py @@ -2,7 +2,7 @@ import inspect import frappe -__version__ = "14.2.1" +__version__ = "14.2.2" def get_default_company(user=None):