Skip to content

Commit

Permalink
🔖 Release v1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
govind-srinidhi committed Nov 27, 2023
1 parent 52b777b commit 4649381
Show file tree
Hide file tree
Showing 6 changed files with 83 additions and 7 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

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

#### [1.6.1](https://github.com/Adyen/lume/compare/1.6.1...1.6.1)
#### [1.6.2](https://github.com/Adyen/lume/compare/1.6.1...1.6.2)

- 🐛 Handled missing data in lume charts [`11a4d1a`](https://github.com/Adyen/lume/commit/11a4d1a50f9cdd0140a36b15b4764cf423ae011a)
- ✅ Fixed tests to check for the null bar values. [`52b777b`](https://github.com/Adyen/lume/commit/52b777be0e3b496d9e96ebaa0e2fe1b85681bba4)
- 🔧 Ignore release commits in changelog [`3ca31bb`](https://github.com/Adyen/lume/commit/3ca31bbe1ccf47220ac824903dd68bb82a672972)

#### [1.6.1](https://github.com/Adyen/lume/compare/1.6.0...1.6.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 1000 ]; 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.6.1",
"version": "1.6.2",
"description": "Lume is a Vue data visualization component library, built with Typescript and 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.6.1",
"version": "1.6.2",
"description": "Lume is a Vue data visualization component library, built with Typescript and D3.",
"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.6.1",
"version": "1.6.2",
"description": "Lume is a Vue data visualization component library, built with Typescript and D3.",
"type": "module",
"module": "dist/index.js",
Expand Down
74 changes: 73 additions & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4649381

Please sign in to comment.