From 684c1e95d093fefadcbba6ae1a52eb9ffe8698cc Mon Sep 17 00:00:00 2001 From: aliou <980367+aliou@users.noreply.github.com> Date: Sun, 15 Mar 2026 00:39:06 +0000 Subject: [PATCH] release: v0.2.1 --- .changeset/silent-metrics.md | 5 ----- CHANGELOG.md | 6 ++++++ flake.nix | 8 ++++---- package.json | 2 +- src/constants.ts | 2 +- 5 files changed, 12 insertions(+), 11 deletions(-) delete mode 100644 .changeset/silent-metrics.md diff --git a/.changeset/silent-metrics.md b/.changeset/silent-metrics.md deleted file mode 100644 index 0e17899..0000000 --- a/.changeset/silent-metrics.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"linear-cli": patch ---- - -Add `@aliou/biome-plugins` and fix all inline import violations. Converts dynamic `await import()` calls inside functions to static imports and removes `.js` extensions from import paths. diff --git a/CHANGELOG.md b/CHANGELOG.md index a44cb60..14a291d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # linear-cli +## 0.2.1 + +### Patch Changes + +- df88aa0: Add `@aliou/biome-plugins` and fix all inline import violations. Converts dynamic `await import()` calls inside functions to static imports and removes `.js` extensions from import paths. + ## 0.2.0 ### Minor Changes diff --git a/flake.nix b/flake.nix index 98ea42e..779a7b9 100644 --- a/flake.nix +++ b/flake.nix @@ -12,7 +12,7 @@ outputs = { self, nixpkgs, flake-utils, git-hooks }: let - version = "0.2.0"; + version = "0.2.1"; # Binary hashes for releases - update these after each release # Run: nix-prefetch-url --type sha256 @@ -20,15 +20,15 @@ binaries = { "aarch64-darwin" = { url = "https://github.com/aliou/linear-cli/releases/download/v${version}/linear-darwin-arm64"; - hash = "sha256-gnpnHkMXJkXcbeBGmg+NeYz6R9vAudI2T5l6wLyEGCU="; # darwin + hash = "sha256-LLP350Gl23oE2litkx1Ldp3fGrRKG37v6PWTe9zlIy4="; # darwin }; "aarch64-linux" = { url = "https://github.com/aliou/linear-cli/releases/download/v${version}/linear-linux-arm64"; - hash = "sha256-QvB5WaqmrzTWvTMcii4FtaXvHJGyHt9+ERcoUkkEOoU="; # linux-arm64 + hash = "sha256-ZQWMurYkWrK1K8SZwJrel98KuWPHZebxfdJ6fcTsqZI="; # linux-arm64 }; "x86_64-linux" = { url = "https://github.com/aliou/linear-cli/releases/download/v${version}/linear-linux-x64"; - hash = "sha256-tvmwOqz/XO+wjieaLdxODDXGiryN1vy4SiOvwSlT2ic="; # linux-x64 + hash = "sha256-crlPjU6aOpbJdNZi/jRQrfg0dZAtHVtyYLxWoO3flRk="; # linux-x64 }; }; diff --git a/package.json b/package.json index fc83d56..aab63fb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "linear-cli", - "version": "0.2.0", + "version": "0.2.1", "description": "CLI for Linear via GraphQL API", "module": "src/index.ts", "type": "module", diff --git a/src/constants.ts b/src/constants.ts index ea585ae..cefab46 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -1,5 +1,5 @@ export const APP_NAME = "linear"; -export const VERSION = "0.2.0"; +export const VERSION = "0.2.1"; export const LINEAR_API_URL = "https://api.linear.app/graphql"; export const CONFIG_FILE = "config.json"; -- 2.51.2