Skip to content

Commit

Permalink
Release v0.5.2 (#557)
Browse files Browse the repository at this point in the history
- Bump version: v0.5.1 -> v0.5.2
- Update changelog
- Update dependencies
  • Loading branch information
casey authored Dec 7, 2019
1 parent 0931fa8 commit 20790a0
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 33 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@ Changelog
=========


[v0.5.2] - 2019-12-7
---------------------

## Added
- Add flags to set and clear shell arguments (#551)
- Allow passing arguments to dependencies (#555)

## Misc
- Un-implement Deref for Table (#546)
- Resolve recipe dependencies (#547)
- Resolve alias targets (#548)
- Remove unnecessary type argument to Alias (#549)
- Resolve functions (#550)
- Reform scope and binding (#556)


[v0.5.1] - 2019-11-20
---------------------

Expand All @@ -17,6 +33,7 @@ Changelog
- Move lexer comment (#536)
- Add missing `--init` test (#543)


[v0.5.0] - 2019-11-12
---------------------

Expand Down
56 changes: 28 additions & 28 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "just"
version = "0.5.1"
version = "0.5.2"
description = "🤖 Just a command runner"
authors = ["Casey Rodarmor <[email protected]>"]
license = "CC0-1.0"
Expand All @@ -19,7 +19,7 @@ ansi_term = "0.12"
assert_matches = "1"
atty = "0.2"
clap = "2.33"
derivative = "1"
derivative = "1.0.1"
dotenv = "0.15"
edit-distance = "2"
env_logger = "0.7"
Expand Down
3 changes: 1 addition & 2 deletions src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,6 @@ impl Config {
matches
.values_of(arg::SHELL_ARG)
.unwrap()
.into_iter()
.map(str::to_owned)
.collect()
};
Expand Down Expand Up @@ -625,7 +624,7 @@ mod tests {
// proper tests for all the flags, but this will do for now.
#[test]
fn help() {
const EXPECTED_HELP: &str = "just v0.5.1
const EXPECTED_HELP: &str = "just v0.5.2
Casey Rodarmor <[email protected]>
🤖 Just a command runner - https://github.com/casey/just
Expand Down
2 changes: 1 addition & 1 deletion src/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ impl<'key, V: Keyed<'key>> Table<'key, V> {
}

pub(crate) fn pop(&mut self) -> Option<V> {
if let Some(key) = self.map.keys().next().map(|key| *key) {
if let Some(key) = self.map.keys().next().copied() {
self.map.remove(key)
} else {
None
Expand Down

0 comments on commit 20790a0

Please sign in to comment.