Skip to content

Commit 6b8f31e

Browse files
committed
Bump lss version to 1.8.1
1 parent 8347397 commit 6b8f31e

File tree

4 files changed

+368
-5
lines changed

4 files changed

+368
-5
lines changed

src/rendering/software/tests.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ fn subsplits_layout() {
123123
check_dims(
124124
&layout.state(&timer),
125125
[300, 800],
126-
0x7a696b4f,
126+
0x76ea8d94,
127127
"subsplits_layout",
128128
);
129129
}
@@ -200,7 +200,7 @@ fn horizontal() {
200200
&[Some(10.0), None, Some(20.0), Some(55.0)],
201201
);
202202

203-
check_dims(&layout.state(&timer), [1500, 40], 0x3a70ef32, "horizontal");
203+
check_dims(&layout.state(&timer), [1500, 40], 0x38c2da29, "horizontal");
204204
}
205205

206206
fn check(state: &LayoutState, expected_checksum: u32, name: &str) {

src/run/parser/livesplit.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ pub fn parse<R: BufRead>(source: R, path: Option<PathBuf>) -> Result<Run> {
549549
});
550550
}
551551

552-
if version < Version(1, 8, 0, 0) {
552+
if version < Version(1, 8, 1, 0) {
553553
import_legacy_subsplits(&mut run);
554554
}
555555

src/run/saver/livesplit.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ pub fn save_run<W: Write>(run: &Run, writer: W) -> Result<()> {
250250

251251
writer.write_event(Event::Decl(BytesDecl::new(b"1.0", Some(b"UTF-8"), None)))?;
252252
writer.write_event(Event::Start(BytesStart::borrowed(
253-
br#"Run version="1.8.0""#,
253+
br#"Run version="1.8.1""#,
254254
3,
255255
)))?;
256256

0 commit comments

Comments
 (0)