2 Commits

Author SHA1 Message Date
5b2688e091 version bump 2021-04-20 10:32:14 +01:00
9f626b8265 remove debug print 2021-04-20 10:31:50 +01:00
2 changed files with 1 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
[package]
name = "lull"
description = "a looping sound player for generating atmospheric soundscapes"
version = "1.0.3"
version = "1.0.4"
authors = ["Max Bradbury <max@tinybird.info>"]
repository = "https://tinybird.dev/max/lull"
license = "MIT"

View File

@@ -38,8 +38,6 @@ fn save_config(config: Config) {
let mut config_file = File::create(config_path)
.expect("Couldn't create config file");
print!("{}", toml);
config_file.write(&toml.into_bytes())
.expect("Couldn't write config file");
}