From d7da52e6c200b90397a933b241e3dac7e4a6e573 Mon Sep 17 00:00:00 2001 From: Antonio Salazar Cardozo Date: Mon, 28 Aug 2023 16:58:29 -0400 Subject: [PATCH] Bump to 0.6.0 for release This release bumps ESLint to the 8.x series, prettier to the 3.x series, and TypeScript to the 5.x series. It also bumps other dependencies to their latest versions and is now self-applying this lint config in CI. Note that one big and impactful change is the switch to Prettier 3.x, which [changes the default value of `trailingComma` to `all`](https://prettier.io/blog/2023/07/05/3.0.0.html#javascript). This means that any project that pulls in a release after this PR lands will likely have a lot of updates to function calls that were previously not using trailing commas. Somewhat less invasive, TypeScript annotations like `typeof Thing["key"]` are now being formatted as `(typeof Thing)["key"]`. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 656c271..232f224 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@thesis-co/eslint-config", - "version": "0.6.0-pre", + "version": "0.6.0", "description": "ESLint TypeScript shareable config for Thesis wide projects", "main": "index.js", "repository": "git@github.com:thesis/eslint-config.git",