From cd4314dc5359c2b6a4e0a4e3cb5b20c8042eeb33 Mon Sep 17 00:00:00 2001 From: Ante Budimir Date: Wed, 12 Mar 2025 08:15:21 +0200 Subject: [PATCH] =?UTF-8?q?chore=20=F0=9F=94=A7:=20add=20CODEOWNERS=20file?= =?UTF-8?q?=20to=20enforce=20code=20review=20requirements?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/CODEOWNERS | 3 +++ CHANGELOG.md | 6 +++++- package.json | 2 +- src/index.ts | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..3cdb268 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,3 @@ +# Default owner + +* @antebudimir diff --git a/CHANGELOG.md b/CHANGELOG.md index 45513ed..9117696 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,13 @@ 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.5.2] - 2025-03-12 + +- Add CODEOWNERS file to enforce code review requirements () + ## [1.5.1] - 2025-03-12 -- Update project dependencies to latest versions () +- Update project dependencies to latest versions (d7b0ca8) ## [1.5.0] - 2025-03-12 diff --git a/package.json b/package.json index a19374b..160661f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@antebudimir/eslint-plugin-vanilla-extract", - "version": "1.5.1", + "version": "1.5.2", "description": "ESLint plugin for enforcing best practices in vanilla-extract CSS styles, including CSS property ordering and additional linting rules.", "author": "Ante Budimir", "license": "MIT", diff --git a/src/index.ts b/src/index.ts index 74f7956..d8dd4cc 100644 --- a/src/index.ts +++ b/src/index.ts @@ -5,7 +5,7 @@ import customOrderRule from './css-rules/custom-order/rule-definition.js'; export const vanillaExtract = { meta: { name: '@antebudimir/eslint-plugin-vanilla-extract', - version: '1.5.1', + version: '1.5.2', }, rules: { 'alphabetical-order': alphabeticalOrderRule,