From 145f51b115ed718cdeccfd3157ee410d75a7823d Mon Sep 17 00:00:00 2001 From: Francis Pion Date: Tue, 23 Apr 2024 12:56:32 -0400 Subject: [PATCH] Release 2.5.1 (#133) --- CHANGELOG.md | 9 ++++++++- package.json | 2 +- src/index.ts | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17239b1..7c149bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Nothing yet. +## [2.5.1] - 2024-04-23 + +### Fixed + +- `parsingUtils` exports. + ## [2.5.0] - 2024-04-23 ### Added @@ -133,7 +139,8 @@ Nothing yet. - Implemented an Image component. - Implemented an Input component. -[unreleased]: https://github.com/Logitar/Vue3Ui/compare/v2.5.0...HEAD +[unreleased]: https://github.com/Logitar/Vue3Ui/compare/v2.5.1...HEAD +[2.5.1]: https://github.com/Logitar/Vue3Ui/compare/v2.5.0...v2.5.1 [2.5.0]: https://github.com/Logitar/Vue3Ui/compare/v2.4.0...v2.5.0 [2.4.0]: https://github.com/Logitar/Vue3Ui/compare/v2.3.0...v2.4.0 [2.3.0]: https://github.com/Logitar/Vue3Ui/compare/v2.2.0...v2.3.0 diff --git a/package.json b/package.json index 2a3e414..1b5d95a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "logitar-vue3-ui", - "version": "2.5.0", + "version": "2.5.1", "description": "Helper functions & Bootstrap5 component library for Vue3 distributed by Logitar.", "keywords": [ "logitar", diff --git a/src/index.ts b/src/index.ts index 01bea0b..84435a7 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,4 +1,4 @@ -import * as parsingUtils from "logitar-js"; +import { parsingUtils } from "logitar-js"; import * as inputUtils from "./helpers/inputUtils"; import * as tooltipUtils from "./helpers/tooltipUtils";