diff --git a/.changeset/calm-spoons-marry.md b/.changeset/calm-spoons-marry.md deleted file mode 100644 index 6432a35..0000000 --- a/.changeset/calm-spoons-marry.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"linear-cli": patch ---- - -Add OAuth token support to auth login and require explicit token type for non-interactive login via `--token` or stdin. diff --git a/CHANGELOG.md b/CHANGELOG.md index 14a291d..2322162 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # linear-cli +## 0.2.2 + +### Patch Changes + +- 1fa7e49: Add OAuth token support to auth login and require explicit token type for non-interactive login via `--token` or stdin. + ## 0.2.1 ### Patch Changes diff --git a/flake.nix b/flake.nix index 7494c6d..0782253 100644 --- a/flake.nix +++ b/flake.nix @@ -12,7 +12,7 @@ outputs = { self, nixpkgs, flake-utils, git-hooks }: let - version = "0.2.1"; + version = "0.2.2"; # 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-OSmWjZEu3KLbqRAk5MQSWDQ7pGq6F5/ZNJdWnDvastM="; # darwin + hash = "sha256-eOXJNeRprz28LhTkSGaPta+peP6DwNM2zfpqxjgzsFE="; # darwin }; "aarch64-linux" = { url = "https://github.com/aliou/linear-cli/releases/download/v${version}/linear-linux-arm64"; - hash = "sha256-zVrz9INFsOmqxalY6dAP4VnEnu/y4Ge9k0IGJ86wITo="; # linux-arm64 + hash = "sha256-0ROA6sRhzbOJdzRFEvU2WNW5IXH5ndFsiqJ9+30+mGM="; # linux-arm64 }; "x86_64-linux" = { url = "https://github.com/aliou/linear-cli/releases/download/v${version}/linear-linux-x64"; - hash = "sha256-mo9gXwcG7y9NmjAcqaHboX/spq7k5FTV8ZaJi+k2GA4="; # linux-x64 + hash = "sha256-YF1kpG+4Nvwgrs/+C9eaUFwI+KSyGtsYYjFxc1D63D0="; # linux-x64 }; }; diff --git a/package.json b/package.json index aab63fb..6395994 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "linear-cli", - "version": "0.2.1", + "version": "0.2.2", "description": "CLI for Linear via GraphQL API", "module": "src/index.ts", "type": "module", diff --git a/src/constants.ts b/src/constants.ts index cefab46..b34e912 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -1,5 +1,5 @@ export const APP_NAME = "linear"; -export const VERSION = "0.2.1"; +export const VERSION = "0.2.2"; export const LINEAR_API_URL = "https://api.linear.app/graphql"; export const CONFIG_FILE = "config.json";