Skip to content

Commit 282bc90

Browse files
committed
Fix Homebrew install docs for v0.2.3
1 parent 51bbe5e commit 282bc90

10 files changed

Lines changed: 15 additions & 9 deletions

File tree

CHANGELOG.md

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

3+
## v0.2.3 - 2026-05-26
4+
5+
### Fixed
6+
7+
- Corrected the Homebrew install command in the README to use the published `teams-cli` formula.
8+
39
## v0.2.2 - 2026-05-26
410

511
### Fixed

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
@@ -1,6 +1,6 @@
11
[package]
22
name = "teams-cli"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
edition = "2021"
55
rust-version = "1.75"
66
license = "MIT"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ On failure:
6363

6464
```bash
6565
# Homebrew (macOS/Linux)
66-
brew install osodevops/tap/teams
66+
brew install osodevops/tap/teams-cli
6767

6868
# Pre-built binaries — download from GitHub Releases
6969
# https://github.com/osodevops/ms-teams-cli/releases

docs/man/teams-agent-contract.7

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH TEAMS-AGENT-CONTRACT 7 "May 26, 2026" "teams-cli 0.2.2" "Miscellaneous Information"
1+
.TH TEAMS-AGENT-CONTRACT 7 "May 26, 2026" "teams-cli 0.2.3" "Miscellaneous Information"
22
.SH NAME
33
teams-agent-contract \- automation contract for the teams CLI
44
.SH DESCRIPTION

docs/man/teams-auth.7

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH TEAMS-AUTH 7 "May 26, 2026" "teams-cli 0.2.2" "Miscellaneous Information"
1+
.TH TEAMS-AUTH 7 "May 26, 2026" "teams-cli 0.2.3" "Miscellaneous Information"
22
.SH NAME
33
teams-auth \- authentication model for the teams CLI
44
.SH DESCRIPTION

docs/man/teams-config.5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH TEAMS-CONFIG 5 "May 26, 2026" "teams-cli 0.2.2" "File Formats"
1+
.TH TEAMS-CONFIG 5 "May 26, 2026" "teams-cli 0.2.3" "File Formats"
22
.SH NAME
33
teams-config \- configuration file for the teams CLI
44
.SH DESCRIPTION

docs/man/teams-examples.7

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH TEAMS-EXAMPLES 7 "May 26, 2026" "teams-cli 0.2.2" "Miscellaneous Information"
1+
.TH TEAMS-EXAMPLES 7 "May 26, 2026" "teams-cli 0.2.3" "Miscellaneous Information"
22
.SH NAME
33
teams-examples \- practical examples for the teams CLI
44
.SH DESCRIPTION

docs/man/teams.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH TEAMS 1 "May 26, 2026" "teams-cli 0.2.2" "User Commands"
1+
.TH TEAMS 1 "May 26, 2026" "teams-cli 0.2.3" "User Commands"
22
.SH NAME
33
teams \- Microsoft Teams CLI for Microsoft Graph automation
44
.SH SYNOPSIS

tests/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ fn version_flag_works() {
3838
.arg("--version")
3939
.assert()
4040
.success()
41-
.stdout(predicate::str::contains("0.2.2"));
41+
.stdout(predicate::str::contains("0.2.3"));
4242
}
4343

4444
#[test]

0 commit comments

Comments
 (0)