From 252f387041b8131abfe27e9d16663235ff989622 Mon Sep 17 00:00:00 2001 From: cheminfo-bot <10880445+cheminfo-bot@users.noreply.github.com> Date: Thu, 17 Aug 2023 11:20:21 +0200 Subject: [PATCH] chore(main): release 0.43.0 (#2556) --- CHANGELOG.md | 37 +++++++++++++++++++++++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 40 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cb0af9ef0..e62d03954 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,42 @@ # Changelog +## [0.43.0](https://github.com/cheminfo/nmrium/compare/v0.42.0...v0.43.0) (2023-08-17) + + +### ⚠ BREAKING CHANGES + +* NMRium is now a named export and some types were renamed for consistency + +### Features + +* 2d Fourier transform ([#2294](https://github.com/cheminfo/nmrium/issues/2294)) ([40e1a4f](https://github.com/cheminfo/nmrium/commit/40e1a4fc509cccab65cf5f4572ce424f5c27b243)) +* add integrals from Bruker 1D data ([#2599](https://github.com/cheminfo/nmrium/issues/2599)) ([0c5fda5](https://github.com/cheminfo/nmrium/commit/0c5fda550e2226315eefe7ba1f39ecfc569c1d49)) +* add molecule labels and improve speed of molecules ([#2623](https://github.com/cheminfo/nmrium/issues/2623)) ([ce9c7b9](https://github.com/cheminfo/nmrium/commit/ce9c7b983cce6b76563aafddd0ba152a478e0ef5)) +* add new way to display peaks ([#2562](https://github.com/cheminfo/nmrium/issues/2562)) ([12e88a1](https://github.com/cheminfo/nmrium/commit/12e88a15a5566c8c3752d089ba49c67b18c6fb69)) +* cut integral ([6ea9103](https://github.com/cheminfo/nmrium/commit/6ea91037732ea42e841294516d5c3cb211f900a3)) +* cut range ([3a8856d](https://github.com/cheminfo/nmrium/commit/3a8856d1a54e3e4923c7c0984b507e210fbd094e)) +* hook for enabling/disabling resizing with Shift key modifier ([eb477d9](https://github.com/cheminfo/nmrium/commit/eb477d9b6f17540e6abe0850d7668a3f8d60b137)) +* key modifiers listener ([06f56ea](https://github.com/cheminfo/nmrium/commit/06f56ea05de1842d1f6370606644f29abda25dc8)) +* perform resizing only when Shift key is not active ([ac14483](https://github.com/cheminfo/nmrium/commit/ac14483a23acb8793ed55eb826282d417b4ec020)), closes [#2570](https://github.com/cheminfo/nmrium/issues/2570) +* report error contains debug state ([#2555](https://github.com/cheminfo/nmrium/issues/2555)) ([05e40c0](https://github.com/cheminfo/nmrium/commit/05e40c0d1cdc1a58743b6d7bfbf7cac8ce7c998b)) +* show label under floating molecules ([#2554](https://github.com/cheminfo/nmrium/issues/2554)) ([5c2ba0d](https://github.com/cheminfo/nmrium/commit/5c2ba0d26e1199ea447cf17089f8df612ec0f30f)) + + +### Bug Fixes + +* 2d shift filter ([#2594](https://github.com/cheminfo/nmrium/issues/2594)) ([b63fe93](https://github.com/cheminfo/nmrium/commit/b63fe933f489d227f35ef3754db590dec13f25c8)), closes [#2591](https://github.com/cheminfo/nmrium/issues/2591) +* correct the integration sum for integrals and ranges ([#2617](https://github.com/cheminfo/nmrium/issues/2617)) ([7977041](https://github.com/cheminfo/nmrium/commit/7977041923451c7c75bf0423facb3b923562cc5f)) +* do not render two buttons in ChangeSumModal ([3f273d2](https://github.com/cheminfo/nmrium/commit/3f273d2d4ec859516a771e8db02892341009c5e5)) +* filters live preview ([#2620](https://github.com/cheminfo/nmrium/issues/2620)) ([b798502](https://github.com/cheminfo/nmrium/commit/b7985021d93d73f15e18d35064f4818fb5d2eb68)) +* improve prediction ([#2613](https://github.com/cheminfo/nmrium/issues/2613)) ([5f35c00](https://github.com/cheminfo/nmrium/commit/5f35c0060afb312ced3a4be08c36426e3fb1402d)) +* load good ones and catch error in the logger ([#2616](https://github.com/cheminfo/nmrium/issues/2616)) ([4413975](https://github.com/cheminfo/nmrium/commit/44139757f34a04fb9b74944dc9670224a9af3c67)) +* update react-science ([#2593](https://github.com/cheminfo/nmrium/issues/2593)) ([795ace9](https://github.com/cheminfo/nmrium/commit/795ace9f65142d7e0e2319e122929daf65b9195f)) + + +### Code Refactoring + +* move public types to their own file ([a921a8b](https://github.com/cheminfo/nmrium/commit/a921a8bf6f8285bc3dd1eaccae2ae28ba253aa6d)) + ## [0.42.0](https://github.com/cheminfo/nmrium/compare/v0.41.0...v0.42.0) (2023-07-27) diff --git a/package-lock.json b/package-lock.json index 5f22ae132..e19b8672c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "nmrium", - "version": "0.42.0", + "version": "0.43.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "nmrium", - "version": "0.42.0", + "version": "0.43.0", "license": "MIT", "dependencies": { "@emotion/react": "^11.11.1", diff --git a/package.json b/package.json index f6c77f8ed..301805b16 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "nmrium", "description": "React component to display and process nuclear magnetic resonance (NMR) spectra.", - "version": "0.42.0", + "version": "0.43.0", "license": "MIT", "main": "lib-cjs/component/main/index.js", "module": "lib/component/main/index.js",