Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions .changeset/remove-cargo-dist.md

This file was deleted.

12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @googleworkspace/cli

## 0.22.4

### Patch Changes

- 86c08cf: Remove cargo-dist; use native Node.js fetch for npm binary installer

Replaces the cargo-dist generated release pipeline and npm package with:

- A custom GitHub Actions release workflow with matrix cross-compilation
- A zero-dependency npm installer using native `fetch()` (Node 18+)
- Removes axios, rimraf, detect-libc, console.table, and axios-proxy-builder dependencies from the published npm package

## 0.22.3

### Patch Changes
Expand Down
81 changes: 36 additions & 45 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crates/google-workspace-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

[package]
name = "google-workspace-cli"
version = "0.22.3"
version = "0.22.4"
edition = "2021"
description = "Google Workspace CLI — dynamic command surface from Discovery Service"
license = "Apache-2.0"
Expand All @@ -30,7 +30,7 @@ name = "gws"
path = "src/main.rs"

[dependencies]
google-workspace = { version = "0.22.3", path = "../google-workspace" }
google-workspace = { version = "0.22.4", path = "../google-workspace" }
tempfile = "3"
aes-gcm = "0.10"
anyhow = "1"
Expand Down
2 changes: 1 addition & 1 deletion crates/google-workspace/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

[package]
name = "google-workspace"
version = "0.22.3"
version = "0.22.4"
edition = "2021"
description = "Google Workspace API client — Discovery Document types, service registry, and HTTP utilities"
license = "Apache-2.0"
Expand Down
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion npm/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@googleworkspace/cli",
"description": "Google Workspace CLI — dynamic command surface from Discovery Service",
"version": "0.22.3",
"version": "0.22.4",
"license": "Apache-2.0",
"author": "Justin Poehnelt",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@googleworkspace/cli",
"version": "0.22.3",
"version": "0.22.4",
"private": true,
"description": "Google Workspace CLI — dynamic command surface from Discovery Service",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion skills/gws-admin-reports/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: gws-admin-reports
description: "Google Workspace Admin SDK: Audit logs and usage reports."
metadata:
version: 0.22.3
version: 0.22.4
openclaw:
category: "productivity"
requires:
Expand Down
2 changes: 1 addition & 1 deletion skills/gws-calendar-agenda/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: gws-calendar-agenda
description: "Google Calendar: Show upcoming events across all calendars."
metadata:
version: 0.22.3
version: 0.22.4
openclaw:
category: "productivity"
requires:
Expand Down
2 changes: 1 addition & 1 deletion skills/gws-calendar-insert/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: gws-calendar-insert
description: "Google Calendar: Create a new event."
metadata:
version: 0.22.3
version: 0.22.4
openclaw:
category: "productivity"
requires:
Expand Down
2 changes: 1 addition & 1 deletion skills/gws-calendar/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: gws-calendar
description: "Google Calendar: Manage calendars and events."
metadata:
version: 0.22.3
version: 0.22.4
openclaw:
category: "productivity"
requires:
Expand Down
2 changes: 1 addition & 1 deletion skills/gws-chat-send/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: gws-chat-send
description: "Google Chat: Send a message to a space."
metadata:
version: 0.22.3
version: 0.22.4
openclaw:
category: "productivity"
requires:
Expand Down
2 changes: 1 addition & 1 deletion skills/gws-chat/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: gws-chat
description: "Google Chat: Manage Chat spaces and messages."
metadata:
version: 0.22.3
version: 0.22.4
openclaw:
category: "productivity"
requires:
Expand Down
2 changes: 1 addition & 1 deletion skills/gws-classroom/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: gws-classroom
description: "Google Classroom: Manage classes, rosters, and coursework."
metadata:
version: 0.22.3
version: 0.22.4
openclaw:
category: "productivity"
requires:
Expand Down
2 changes: 1 addition & 1 deletion skills/gws-docs-write/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: gws-docs-write
description: "Google Docs: Append text to a document."
metadata:
version: 0.22.3
version: 0.22.4
openclaw:
category: "productivity"
requires:
Expand Down
Loading
Loading