Skip to content

Commit af26cd1

Browse files
committed
v0.8.1
1 parent d84635e commit af26cd1

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

CHANGELOG.md

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

3+
## v0.8.1 - 2020-05-19
4+
5+
- The formatter now correctly handles unicode comments.
6+
37
## v0.8.0 - 2020-05-07
48

59
- The `docs build`, `docs publish`, and `docs remove` commands can be used to

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 = "gleam"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
authors = ["Louis Pilfold <[email protected]>"]
55
edition = "2018"
66

src/format.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -216,9 +216,6 @@ impl<'a> Formatter<'a> {
216216
}
217217

218218
fn documented_statement(&mut self, s: &UntypedStatement) -> Document {
219-
dbg!(&self.doc_comments);
220-
dbg!(s.location());
221-
222219
let comments = self.doc_comments(s.location().start);
223220
comments.append(self.statement(s)).group()
224221
}

0 commit comments

Comments
 (0)