Skip to content

Commit e6bedc0

Browse files
chore: release versions (#387)
* chore: release versions * chore: regenerate skills [skip ci] --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 4d4b09f commit e6bedc0

9 files changed

Lines changed: 48 additions & 57 deletions

File tree

.changeset/add-recipient-flags.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @googleworkspace/cli
22

3+
## 0.11.0
4+
5+
### Minor Changes
6+
7+
- 4d4b09f: Add `--cc` and `--bcc` flags to `+send`, `--to` and `--bcc` to `+reply` and `+reply-all`, and `--bcc` to `+forward`.
8+
39
## 0.10.0
410

511
### Minor Changes

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
[package]
1616
name = "gws"
17-
version = "0.10.0"
17+
version = "0.11.0"
1818
edition = "2021"
1919
description = "Google Workspace CLI — dynamic command surface from Discovery Service"
2020
license = "Apache-2.0"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@googleworkspace/cli",
3-
"version": "0.10.0",
3+
"version": "0.11.0",
44
"private": true,
55
"description": "Google Workspace CLI — dynamic command surface from Discovery Service",
66
"license": "Apache-2.0",

skills/gws-gmail-forward/SKILL.md

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ gws gmail +forward --message-id <ID> --to <EMAILS>
2424

2525
## Flags
2626

27-
| Flag | Required | Default | Description |
28-
| -------------- | -------- | ------- | --------------------------------------------------------------- |
29-
| `--message-id` | | | Gmail message ID to forward |
30-
| `--to` | | | Recipient email address(es), comma-separated |
31-
| `--from` | | | Sender address (for send-as/alias; omit to use account default) |
32-
| `--cc` | | | CC email address(es), comma-separated |
33-
| `--bcc` | | | BCC email address(es), comma-separated |
34-
| `--body` | | | Optional note to include above the forwarded message |
35-
| `--dry-run` | | | Show the request that would be sent without executing it |
27+
| Flag | Required | Default | Description |
28+
|------|----------|---------|-------------|
29+
| `--message-id` ||| Gmail message ID to forward |
30+
| `--to` ||| Recipient email address(es), comma-separated |
31+
| `--from` ||| Sender address (for send-as/alias; omit to use account default) |
32+
| `--cc` ||| CC email address(es), comma-separated |
33+
| `--bcc` ||| BCC email address(es), comma-separated |
34+
| `--body` ||| Optional note to include above the forwarded message |
35+
| `--dry-run` ||| Show the request that would be sent without executing it |
3636

3737
## Examples
3838

@@ -46,10 +46,6 @@ gws gmail +forward --message-id 18f1a2b3c4d --to dave@example.com --bcc secret@e
4646
## Tips
4747

4848
- Includes the original message with sender, date, subject, and recipients.
49-
- Sends the forward as a new message rather than forcing it into the original thread.
50-
51-
> [!CAUTION]
52-
> This is a **write** command — confirm with the user before executing.
5349

5450
## See Also
5551

skills/gws-gmail-reply-all/SKILL.md

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ gws gmail +reply-all --message-id <ID> --body <TEXT>
2424

2525
## Flags
2626

27-
| Flag | Required | Default | Description |
28-
| -------------- | -------- | ------- | ------------------------------------------------------------------- |
29-
| `--message-id` | | | Gmail message ID to reply to |
30-
| `--body` | | | Reply body (plain text) |
31-
| `--from` | | | Sender address (for send-as/alias; omit to use account default) |
32-
| `--to` | | | Additional To email address(es), comma-separated |
33-
| `--cc` | | | Additional CC email address(es), comma-separated |
34-
| `--bcc` | | | BCC email address(es), comma-separated |
35-
| `--remove` | | | Exclude recipients from the outgoing reply, comma-separated emails |
36-
| `--dry-run` | | | Show the request that would be sent without executing it |
27+
| Flag | Required | Default | Description |
28+
|------|----------|---------|-------------|
29+
| `--message-id` ||| Gmail message ID to reply to |
30+
| `--body` ||| Reply body (plain text) |
31+
| `--from` ||| Sender address (for send-as/alias; omit to use account default) |
32+
| `--to` ||| Additional To email address(es), comma-separated |
33+
| `--cc` ||| Additional CC email address(es), comma-separated |
34+
| `--bcc` ||| BCC email address(es), comma-separated |
35+
| `--remove` ||| Exclude recipients from the outgoing reply (comma-separated emails) |
36+
| `--dry-run` ||| Show the request that would be sent without executing it |
3737

3838
## Examples
3939

@@ -54,9 +54,6 @@ gws gmail +reply-all --message-id 18f1a2b3c4d --body 'Reply' --bcc secret@exampl
5454
- Use --remove to exclude recipients from the outgoing reply, including the sender or Reply-To target.
5555
- The command fails if no To recipient remains after exclusions and --to additions.
5656

57-
> [!CAUTION]
58-
> This is a **write** command — confirm with the user before executing.
59-
6057
## See Also
6158

6259
- [gws-shared](../gws-shared/SKILL.md) — Global flags and auth

skills/gws-gmail-reply/SKILL.md

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ gws gmail +reply --message-id <ID> --body <TEXT>
2424

2525
## Flags
2626

27-
| Flag | Required | Default | Description |
28-
| -------------- | -------- | ------- | --------------------------------------------------------------- |
29-
| `--message-id` | | | Gmail message ID to reply to |
30-
| `--body` | | | Reply body (plain text) |
31-
| `--from` | | | Sender address (for send-as/alias; omit to use account default) |
32-
| `--to` | | | Additional To email address(es), comma-separated |
33-
| `--cc` | | | Additional CC email address(es), comma-separated |
34-
| `--bcc` | | | BCC email address(es), comma-separated |
35-
| `--dry-run` | | | Show the request that would be sent without executing it |
27+
| Flag | Required | Default | Description |
28+
|------|----------|---------|-------------|
29+
| `--message-id` ||| Gmail message ID to reply to |
30+
| `--body` ||| Reply body (plain text) |
31+
| `--from` ||| Sender address (for send-as/alias; omit to use account default) |
32+
| `--to` ||| Additional To email address(es), comma-separated |
33+
| `--cc` ||| Additional CC email address(es), comma-separated |
34+
| `--bcc` ||| BCC email address(es), comma-separated |
35+
| `--dry-run` ||| Show the request that would be sent without executing it |
3636

3737
## Examples
3838

@@ -47,12 +47,9 @@ gws gmail +reply --message-id 18f1a2b3c4d --body 'Reply' --bcc secret@example.co
4747

4848
- Automatically sets In-Reply-To, References, and threadId headers.
4949
- Quotes the original message in the reply body.
50-
- Use --to to add extra recipients to the To field.
50+
- --to adds extra recipients to the To field.
5151
- For reply-all, use +reply-all instead.
5252

53-
> [!CAUTION]
54-
> This is a **write** command — confirm with the user before executing.
55-
5653
## See Also
5754

5855
- [gws-shared](../gws-shared/SKILL.md) — Global flags and auth

skills/gws-gmail-send/SKILL.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@ Send an email
1919
## Usage
2020

2121
```bash
22-
gws gmail +send --to <EMAIL> --subject <SUBJECT> --body <TEXT>
22+
gws gmail +send --to <EMAILS> --subject <SUBJECT> --body <TEXT>
2323
```
2424

2525
## Flags
2626

27-
| Flag | Required | Default | Description |
28-
| ----------- | -------- | ------- | -------------------------------------------------------- |
29-
| `--to` | | | Recipient email address(es), comma-separated |
30-
| `--subject` | | | Email subject |
31-
| `--body` | | | Email body (plain text) |
32-
| `--cc` | | | CC email address(es), comma-separated |
33-
| `--bcc` | | | BCC email address(es), comma-separated |
34-
| `--dry-run` | | | Show the request that would be sent without executing it |
27+
| Flag | Required | Default | Description |
28+
|------|----------|---------|-------------|
29+
| `--to` ||| Recipient email address(es), comma-separated |
30+
| `--subject` ||| Email subject |
31+
| `--body` ||| Email body (plain text) |
32+
| `--cc` ||| CC email address(es), comma-separated |
33+
| `--bcc` ||| BCC email address(es), comma-separated |
34+
| `--dry-run` ||| Show the request that would be sent without executing it |
3535

3636
## Examples
3737

@@ -44,7 +44,7 @@ gws gmail +send --to alice@example.com --subject 'Hello' --body 'Hi!' --bcc secr
4444
## Tips
4545

4646
- Handles RFC 2822 formatting and base64 encoding automatically.
47-
- For HTML bodies or attachments, use the raw API instead: `gws gmail users messages send --json '...'`
47+
- For HTML bodies or attachments, use the raw API instead: gws gmail users messages send --json '...'
4848

4949
> [!CAUTION]
5050
> This is a **write** command — confirm with the user before executing.

0 commit comments

Comments
 (0)