From 08269a2d3f6ecd381710a5b6f29c75926a082506 Mon Sep 17 00:00:00 2001
From: Quaternions <krakow20@gmail.com>
Date: Tue, 31 Dec 2024 22:50:14 -0800
Subject: [PATCH] version typo

---
 src/lib.rs           |  2 +-
 src/tests.rs         | 10 +++++-----
 src/{v1.rs => v0.rs} |  0
 3 files changed, 6 insertions(+), 6 deletions(-)
 rename src/{v1.rs => v0.rs} (100%)

diff --git a/src/lib.rs b/src/lib.rs
index d80700a..cc08a0d 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,4 +1,4 @@
-pub mod v1;
+pub mod v0;
 
 #[cfg(test)]
 mod tests;
diff --git a/src/tests.rs b/src/tests.rs
index b030ef4..d1d3f84 100644
--- a/src/tests.rs
+++ b/src/tests.rs
@@ -1,10 +1,10 @@
-use crate::v1::TimedBlockId;
+use crate::v0::TimedBlockId;
 
 #[test]
-fn _1()->Result<(),crate::v1::Error>{
+fn _1()->Result<(),crate::v0::Error>{
 	let file=std::fs::File::open("files/bhop_marble_7cf33a64-7120-4514-b9fa-4fe29d9523d").unwrap();
 	let input=std::io::BufReader::new(file);
-	let mut bot_file=crate::v1::File::new(input).unwrap();
+	let mut bot_file=crate::v0::File::new(input).unwrap();
 	println!("header={:?}",bot_file.header);
 	for &TimedBlockId{time,block_id} in &bot_file.header.offline_blocks_timeline{
 		println!("offline time={} block_id={:?}",time,block_id);
@@ -25,13 +25,13 @@ fn _1()->Result<(),crate::v1::Error>{
 }
 
 #[test]
-fn _2()->Result<(),crate::v1::Error>{
+fn _2()->Result<(),crate::v0::Error>{
 	let file=std::fs::File::open("files/bhop_marble_7cf33a64-7120-4514-b9fa-4fe29d9523d").unwrap();
 	let input=std::io::BufReader::new(file);
 
 	let t0=std::time::Instant::now();
 
-	let mut bot_file=crate::v1::File::new(input).unwrap();
+	let mut bot_file=crate::v0::File::new(input).unwrap();
 
 	let block=bot_file.read_all()?;
 
diff --git a/src/v1.rs b/src/v0.rs
similarity index 100%
rename from src/v1.rs
rename to src/v0.rs