diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 9464c4e..64e0684 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.6.2" + ".": "1.7.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 56840e4..fa226f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +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.7.0](https://github.com/altertable-ai/altertable-cli/compare/v1.6.2...v1.7.0) (2026-09-17) + + +### Features + +* add `login --service-account` and `logout --except-current` ([#109](https://github.com/altertable-ai/altertable-cli/issues/109)) ([a6a1d34](https://github.com/altertable-ai/altertable-cli/commit/a6a1d347fa68a93b5def5a563f8f57d278a53a16)) + ## [1.6.2](https://github.com/altertable-ai/altertable-cli/compare/v1.6.1...v1.6.2) (2026-09-16) diff --git a/COMMANDS.md b/COMMANDS.md index bc39c6b..ca55bf0 100644 --- a/COMMANDS.md +++ b/COMMANDS.md @@ -2,7 +2,7 @@ # Altertable CLI command reference -Altertable CLI v1.6.2 • Query and manage your data platform from the terminal. +Altertable CLI v1.7.0 • Query and manage your data platform from the terminal. **Global options** diff --git a/cli-reference.json b/cli-reference.json index a037684..8c3849c 100644 --- a/cli-reference.json +++ b/cli-reference.json @@ -1,6 +1,6 @@ { "schemaVersion": 1, - "cliVersion": "1.6.2", + "cliVersion": "1.7.0", "globalOptions": [ { "name": "help", diff --git a/cli/package.json b/cli/package.json index 1008560..8c35bb0 100644 --- a/cli/package.json +++ b/cli/package.json @@ -1,6 +1,6 @@ { "name": "@altertable/cli", - "version": "1.6.2", + "version": "1.7.0", "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 eb92458..dedadd4 100644 --- a/cli/src/version.ts +++ b/cli/src/version.ts @@ -1,2 +1,2 @@ -export const VERSION = "1.6.2"; // x-release-please-version +export const VERSION = "1.7.0"; // x-release-please-version export const USER_AGENT = `altertable-cli/${VERSION}`;