Skip to content

Commit 4143d87

Browse files
committed
version 1.1.7
1 parent 9fe855d commit 4143d87

File tree

7 files changed

+7
-9
lines changed

7 files changed

+7
-9
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
### next
1+
<a name="v1.1.7"></a>
2+
### v1.1.7 - 2021/07/11
23
- recognize doc test output - Fix #49
34
- display 4 spaces for tabs - Fix #50
45

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 = "bacon"
3-
version = "1.1.7-dev"
3+
version = "1.1.7"
44
authors = ["dystroy <[email protected]>"]
55
repository = "https://github.com/Canop/bacon"
66
description = "background rust compiler"

src/mission.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ impl Mission {
9999
let mut files_to_watch = Vec::new();
100100
let mut directories_to_watch = Vec::new();
101101
if !location.intended_is_package {
102-
directories_to_watch.push(location.intended_dir.to_path_buf());
102+
directories_to_watch.push(location.intended_dir);
103103
}
104104
for item in metadata.packages {
105105
if item.source.is_none() {

src/package_config.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ use {
33
anyhow::*,
44
serde::Deserialize,
55
std::{collections::HashMap, fs, path::Path},
6-
toml,
76
};
87

98
/// the configuration item which may be stored as `bacon.toml`

src/prefs.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ use {
33
anyhow::*,
44
serde::Deserialize,
55
std::{fs, path::Path},
6-
toml,
76
};
87

98
/// the configuration item which may be stored as `prefs.toml`

src/tty.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ use {
33
anyhow::*,
44
std::io::Write,
55
termimad::StrFit,
6-
vte,
76
};
87

98
pub const CSI_RESET: &str = "\u{1b}[0m\u{1b}[0m";
@@ -114,7 +113,7 @@ impl TLine {
114113
for byte in tty.bytes() {
115114
parser.advance(&mut builder, byte);
116115
}
117-
builder.to_tline()
116+
builder.into_tline()
118117
}
119118
pub fn from_raw(raw: String) -> Self {
120119
Self {
@@ -201,7 +200,7 @@ pub struct TLineBuilder {
201200
strings: Vec<TString>,
202201
}
203202
impl TLineBuilder {
204-
pub fn to_tline(mut self) -> TLine {
203+
pub fn into_tline(mut self) -> TLine {
205204
if let Some(cur) = self.cur {
206205
self.strings.push(cur);
207206
}

0 commit comments

Comments
 (0)