From ab0be522c07d3eed63a4f4ce476a09f6e6cabdf7 Mon Sep 17 00:00:00 2001 From: Roni Laukkarinen Date: Sun, 10 Nov 2024 14:08:36 +0200 Subject: [PATCH] Fix trailing comma errors in CSS files #143 Fixes #141 --- CHANGELOG.md | 3 ++- layout-multiple-columns.css | 2 +- layout-single-column.css | 2 +- package.json | 4 ++-- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3faa3bd..bf57881 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,8 @@ -### 2.0.5rc: 2024-11-10 +### 2.0.5: 2024-11-10 * Add unit test to test for CSS syntax errors #141 * Add custom validator for comma errors #141 +* Fix trailing comma errors in CSS files #143 Fixes #141 (thanks @thomas-pike!) ### 2.0.4: 2024-10-18 diff --git a/layout-multiple-columns.css b/layout-multiple-columns.css index bd4fa7e..0b7e193 100644 --- a/layout-multiple-columns.css +++ b/layout-multiple-columns.css @@ -1,5 +1,5 @@ /* Mastodon Bird UI by @rolle@mementomori.social - 2.0.4 */ + 2.0.5 */ /* CSS variables */ :root { diff --git a/layout-single-column.css b/layout-single-column.css index f2d0b82..68103de 100644 --- a/layout-single-column.css +++ b/layout-single-column.css @@ -1,5 +1,5 @@ /* Mastodon Bird UI by @rolle@mementomori.social - 2.0.4 */ + 2.0.5 */ /* CSS variables */ :root { diff --git a/package.json b/package.json index bdbb5a9..8b82971 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mastodon-bird-ui", - "version": "2.0.4", + "version": "2.0.5", "description": "", "main": "index.js", "scripts": { @@ -21,4 +21,4 @@ "stylelint-order": "^6.0.3" }, "dependencies": {} -} +} \ No newline at end of file