diff --git a/.changes/pre.json b/.changes/pre.json index e45295c..c6b212a 100644 --- a/.changes/pre.json +++ b/.changes/pre.json @@ -3,6 +3,7 @@ "changes": [ ".changes/add-icon.md", ".changes/create-panel.md", + ".changes/create-problem.md", ".changes/fix-dark-mode.md", ".changes/fix-layout.md", ".changes/fix-login.md", @@ -11,6 +12,7 @@ ".changes/index-page.md", ".changes/login.md", ".changes/optimize-dark.md", + ".changes/problem-page.md", ".changes/refactor-login.md", ".changes/release-nightly.md", ".changes/rust-nightly.md", diff --git a/src-tauri/CHANGELOG.md b/src-tauri/CHANGELOG.md index 4ca79e0..21f9732 100644 --- a/src-tauri/CHANGELOG.md +++ b/src-tauri/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## \[0.1.1-nightly.11] + +### New Features + +- [`ded0848`](https://github.com/swpu-acm/algohub.git/commit/ded0848add538f4a8a2b79fc76ded269121dcf48) ([#41](https://github.com/swpu-acm/algohub.git/pull/41) by [@fu050409](https://github.com/swpu-acm/algohub.git/../../fu050409)) Support create new algorithm problem and upload test cases. +- [`1ef441e`](https://github.com/swpu-acm/algohub.git/commit/1ef441e4a29c7c011797083cba20800992ddb11b) ([#43](https://github.com/swpu-acm/algohub.git/pull/43) by [@fu050409](https://github.com/swpu-acm/algohub.git/../../fu050409)) Add page for problem + + - Add support for microsoft Monaco editor and setup to run Monaco locally. + - Initial commit for submit code with specific language. + - Set `Rust` as default language for submit code. + ## \[0.1.1-nightly.10] ### New Features diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 6c7a0dd..464d2d4 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "algohub" -version = "0.1.1-nightly.10" +version = "0.1.1-nightly.11" description = "ACM Algorithm Hub" repository = "https://github.com/swpu-acm/algohub" readme = "../README.md"