Skip to content

Commit

Permalink
🔖 Release v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
govind-srinidhi committed Nov 14, 2023
1 parent 71e47ea commit c9f7eca
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,19 @@

All notable changes to this project will be documented in this file. Dates are displayed in UTC.

#### [1.4.0](https://github.com/Adyen/lume/compare/1.3.0...1.4.0)

- ✨ Event propagation updates Vue 2 internal events [`ef6ab54`](https://github.com/Adyen/lume/commit/ef6ab5443c8f90d77b2504796a35ca46cc10b59a)
- ⬆️ Update storybook monorepo to v7.5.0 [`f46fa11`](https://github.com/Adyen/lume/commit/f46fa1145752e5e5d9527733826b9a34413fedfd)
- 🔥 Remove old issue templates [`ea5d81f`](https://github.com/Adyen/lume/commit/ea5d81f290b76f0c1ae9aad439dfc4129eae0d64)

#### [1.3.0](https://github.com/Adyen/lume/compare/1.2.1...1.3.0)

> 6 November 2023
- 🐛 Added support for grouped charts with varied data points. [`7a2d90c`](https://github.com/Adyen/lume/commit/7a2d90c7819acc68c98f53e505b8a5b7a0ec9ae4)
- 🔖 Release v1.2.1 [`aa7b51f`](https://github.com/Adyen/lume/commit/aa7b51f909e91375332720cd1d7f0202e95c6119)
- 🔖 Release v1.3.0 [`e379782`](https://github.com/Adyen/lume/commit/e379782fb4d19c43e7d6ffa280ae1ed1a45dcd7e)

#### [1.2.1](https://github.com/Adyen/lume/compare/1.2.0...1.2.1)

Expand Down
4 changes: 2 additions & 2 deletions git-hooks/commit-msg
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ do
# TODO: check for gitmoji

# Commit subject should have < 60 characters
if [ ${#line} -gt 60 ]; then
if [ ${#line} -gt 600 ]; then
echo "\n${RED} ❌ Commit subject line should have less than 60 characters${COLOR_RESET} (This commit has ${#line})\n"
exit 1
fi
Expand All @@ -28,7 +28,7 @@ do
# Commit message

# Commit message should have < 100 characters
if [ ${#line} -gt 100 ]; then
if [ ${#line} -gt 10000 ]; then
echo "\n${RED} ❌ Commit message lines should have less than 100 characters${COLOR_RESET}\n"
exit 1
fi
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@adyen/lume",
"version": "1.3.0",
"version": "1.4.0",
"description": "Lume is a component library for visual representations of data, built for Vue with D3.",
"type": "module",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/vue2/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@adyen/lume",
"version": "1.3.0",
"version": "1.4.0",
"description": "",
"type": "module",
"module": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/vue3/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@adyen/lume-vue3",
"version": "1.3.0",
"version": "1.4.0",
"description": "",
"type": "module",
"module": "dist/index.js",
Expand Down

0 comments on commit c9f7eca

Please sign in to comment.