Skip to content

Commit e035af3

Browse files
committed
This is 0.7.1
1 parent cc30646 commit e035af3

5 files changed

Lines changed: 21 additions & 4 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 = "sheldon"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
authors = ["Ross MacArthur <[email protected]>"]
55
edition = "2018"
66
description = "Fast, configurable, shell plugin manager."

RELEASES.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# 📝 Release notes
22

3+
## 0.7.1
4+
5+
*November 1st, 2022*
6+
7+
- [Fix bug with custom config file.][#156] Previously, the default config
8+
directory still needed to exist for Sheldon to work properly.
9+
10+
- [Add `compact` release profile.][#145] This profile is optimized for binary
11+
size.
12+
```
13+
cargo install --profile compact sheldon
14+
```
15+
16+
[#156]: https://github.com/rossmacarthur/sheldon/issues/156
17+
[#145]: https://github.com/rossmacarthur/sheldon/issues/145
18+
319
## 0.7.0
420

521
*October 13th, 2022*

src/cli/testdata/raw_opt_subcommand_required.golden

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
sheldon 0.7.0
1+
sheldon {{ version }}
22
Ross MacArthur <[email protected]>
33
Fast, configurable, shell plugin manager.
44

src/cli/tests.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,8 @@ fn raw_opt_options() {
117117
fn raw_opt_subcommand_required() {
118118
setup();
119119
let err = raw_opt_err(&[]);
120-
goldie::assert!(err.to_string());
120+
let ctx = upon::value! { version: build::CRATE_RELEASE };
121+
goldie::assert_template!(&ctx, err.to_string());
121122
assert_eq!(
122123
err.kind(),
123124
ErrorKind::DisplayHelpOnMissingArgumentOrSubcommand

0 commit comments

Comments
 (0)