From f328998b6f027a906bd0262cb9d24c4157535c5f Mon Sep 17 00:00:00 2001 From: saying Date: Sat, 27 Jul 2024 00:11:55 +0800 Subject: [PATCH] publish: lcode: 0.9.3, lcode-config: 0.3.14, leetcode-api: 0.4.1 --- CHANGELOG.md | 13 ++++++++++++- Cargo.lock | 6 +++--- crates/lcode-config/Cargo.toml | 2 +- crates/lcode/Cargo.toml | 2 +- crates/leetcode-api/Cargo.toml | 2 +- 5 files changed, 18 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d7ad491..010aa06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,12 +6,23 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [0.9.3] ### Added - lcode: when submit not pass test case can add last test case. +### Chore + +- Rust: Switch to Stable channel. +- Clippy: tweak lints. + +### Perf + +- Avoid some heap allocation by `format_push_string` lint + +## [0.9.2] + ### Perf - Avoid unnecessary render and filter. diff --git a/Cargo.lock b/Cargo.lock index ca9c6e6..adbb325 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1712,7 +1712,7 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" [[package]] name = "lcode" -version = "0.9.2" +version = "0.9.3" dependencies = [ "atoi", "clap", @@ -1740,7 +1740,7 @@ dependencies = [ [[package]] name = "lcode-config" -version = "0.3.13" +version = "0.3.14" dependencies = [ "crossterm 0.27.0", "decrypt-cookies", @@ -1756,7 +1756,7 @@ dependencies = [ [[package]] name = "leetcode-api" -version = "0.4.0" +version = "0.4.1" dependencies = [ "colored", "decrypt-cookies", diff --git a/crates/lcode-config/Cargo.toml b/crates/lcode-config/Cargo.toml index f60b0f9..d66e01d 100644 --- a/crates/lcode-config/Cargo.toml +++ b/crates/lcode-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lcode-config" -version = "0.3.13" +version = "0.3.14" license = "MIT OR Apache-2.0" description = "config mod for [lcode](https://crates.io/crates/lcode)" edition = { workspace = true } diff --git a/crates/lcode/Cargo.toml b/crates/lcode/Cargo.toml index 47a10c3..cde1bdf 100644 --- a/crates/lcode/Cargo.toml +++ b/crates/lcode/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lcode" -version = "0.9.2" +version = "0.9.3" description = "An application of terminal write leetcode.一个终端刷力扣的应用" documentation = "https://docs.rs/lcode" license = "Apache-2.0" diff --git a/crates/leetcode-api/Cargo.toml b/crates/leetcode-api/Cargo.toml index 5c8954b..1f0f17f 100644 --- a/crates/leetcode-api/Cargo.toml +++ b/crates/leetcode-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "leetcode-api" -version = "0.4.0" +version = "0.4.1" description = "leetcode api" license = "MIT" edition = { workspace = true }