Skip to content

Commit 3218182

Browse files
HilliamTclaude
andauthored
Bump version to 0.6.0 (#39)
- Update version in Cargo.toml from 0.5.0 to 0.6.0 - Update version example in README.md - Update test values in src/cli.rs Changes since v0.5.0: - Remove filename from snapshot API, use key for downloads (#38) Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
1 parent 4d7b9e5 commit 3218182

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

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 = "polaris"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
edition = "2024"
55

66
[dependencies]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ By default, `polaris update` tries to preserve the current install directory whe
209209

210210
```bash
211211
polaris update
212-
polaris update --version v0.5.0
212+
polaris update --version v0.6.0
213213
polaris update --install-dir "$HOME/.local/bin"
214214
```
215215

src/cli.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,15 +172,15 @@ mod tests {
172172
"polaris",
173173
"update",
174174
"--version",
175-
"v0.5.0",
175+
"v0.6.0",
176176
"--install-dir",
177177
"/tmp/polaris",
178178
])
179179
.expect("cli");
180180

181181
match cli.command {
182182
Some(Command::Update(args)) => {
183-
assert_eq!(args.version.as_deref(), Some("v0.5.0"));
183+
assert_eq!(args.version.as_deref(), Some("v0.6.0"));
184184
assert_eq!(
185185
args.install_dir.as_deref(),
186186
Some(std::path::Path::new("/tmp/polaris"))

0 commit comments

Comments
 (0)