diff --git a/CHANGELOG.md b/CHANGELOG.md index c2c9be9..e6a17ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 1.0.2 + +- Fixed an issue where closing the tab during stress tests would cause the extension to panic, due to some recent VS Code changes. +- Fixed an issue where downloading tasks would cause ICIE to hang due to some recent Node.js changes. + ## 1.0.1 - Fixed a CodeChef issue where the site sometimes claims the problem is "not visible", even though it clearly is. ICIE will now wait 10 seconds and retry up to 4 times, treating this similarly to a network error. diff --git a/Cargo.lock b/Cargo.lock index ce3d9be..33cf1f2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -373,7 +373,7 @@ dependencies = [ [[package]] name = "icie" -version = "1.0.1" +version = "1.0.2" dependencies = [ "async-trait", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 58a13ec..a64e7f3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "icie" -version = "1.0.1" +version = "1.0.2" authors = ["Mateusz Cegiełka "] edition = "2018" description = "Competitive programming IDE-as-a-VS-Code-plugin"