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,