diff --git a/CHANGELOG.md b/CHANGELOG.md index 87718983..3dfa3d84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.1.1] - 2024-05-09 + +### Fixed + +- imports with relative paths were failing in `js` files. + ## [1.1.0] - 2024-03-08 ### Added diff --git a/Gemfile.lock b/Gemfile.lock index cec0a3bd..f0626347 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - bali_view_components (1.1.0) + bali_view_components (1.1.1) caxlsx rails (>= 7.0.2) ransack @@ -171,7 +171,7 @@ GEM mini_portile2 (2.8.6) minitest (5.22.3) mutex_m (0.2.0) - net-imap (0.4.10) + net-imap (0.4.11) date net-protocol net-pop (0.1.2) diff --git a/lib/bali/version.rb b/lib/bali/version.rb index 27297270..2323963c 100644 --- a/lib/bali/version.rb +++ b/lib/bali/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Bali - VERSION = '1.1.0' + VERSION = '1.1.1' end diff --git a/package.json b/package.json index a36b3ab5..3edda4d0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bali-view-components", - "version": "1.1.0", + "version": "1.1.1", "description": "Bali ViewComponents", "repository": "git@github.com:Grupo-AFAL/bali.git", "author": "Federico Gonzalez ",