From 2ec05dcdfcfa1e3f0141dee678f44d02c788877f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 16 Sep 2026 21:14:03 +0000 Subject: [PATCH] chore(main): release 1.6.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 9 +++++++++ COMMANDS.md | 2 +- cli-reference.json | 2 +- cli/package.json | 2 +- cli/src/version.ts | 2 +- 6 files changed, 14 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 093be7e..9464c4e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.6.1" + ".": "1.6.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 452829b..56840e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ 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.6.2](https://github.com/altertable-ai/altertable-cli/compare/v1.6.1...v1.6.2) (2026-09-16) + + +### Bug Fixes + +* make authentication remediation safe for headless use ([#103](https://github.com/altertable-ai/altertable-cli/issues/103)) ([f3336a0](https://github.com/altertable-ai/altertable-cli/commit/f3336a0c62c19baefddb58b13d34e9c74e21d5f0)) +* **release:** restore macOS 27 binary compatibility ([#108](https://github.com/altertable-ai/altertable-cli/issues/108)) ([de05fd0](https://github.com/altertable-ai/altertable-cli/commit/de05fd0b18eaa53cd3b28e00ff680f236fe53c61)) +* return unhealthy exit statuses for diagnostic commands ([#104](https://github.com/altertable-ai/altertable-cli/issues/104)) ([96a8474](https://github.com/altertable-ai/altertable-cli/commit/96a8474b172b966974a638237b6aae332cdc03d3)) + ## [1.6.1](https://github.com/altertable-ai/altertable-cli/compare/v1.6.0...v1.6.1) (2026-08-21) diff --git a/COMMANDS.md b/COMMANDS.md index d211d69..ca2a2b2 100644 --- a/COMMANDS.md +++ b/COMMANDS.md @@ -2,7 +2,7 @@ # Altertable CLI command reference -Altertable CLI v1.6.1 • Query and manage your data platform from the terminal. +Altertable CLI v1.6.2 • Query and manage your data platform from the terminal. **Global options** diff --git a/cli-reference.json b/cli-reference.json index c01610b..dfaa57d 100644 --- a/cli-reference.json +++ b/cli-reference.json @@ -1,6 +1,6 @@ { "schemaVersion": 1, - "cliVersion": "1.6.1", + "cliVersion": "1.6.2", "globalOptions": [ { "name": "help", diff --git a/cli/package.json b/cli/package.json index 2982214..1008560 100644 --- a/cli/package.json +++ b/cli/package.json @@ -1,6 +1,6 @@ { "name": "@altertable/cli", - "version": "1.6.1", + "version": "1.6.2", "description": "Altertable CLI — query and manage your data platform", "homepage": "https://github.com/altertable-ai/altertable-cli#readme", "bugs": { diff --git a/cli/src/version.ts b/cli/src/version.ts index 7a0320e..eb92458 100644 --- a/cli/src/version.ts +++ b/cli/src/version.ts @@ -1,2 +1,2 @@ -export const VERSION = "1.6.1"; // x-release-please-version +export const VERSION = "1.6.2"; // x-release-please-version export const USER_AGENT = `altertable-cli/${VERSION}`;