Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set rust toolchain stable channel and update dependencies #16

Merged
merged 13 commits into from
Jul 26, 2024
4 changes: 2 additions & 2 deletions .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
rust: [nightly]
rust: [stable]
steps:
- uses: actions/checkout/@v4

- name: Install Toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
toolchain: stable
components: clippy

- name: Rust Cache
Expand Down
13 changes: 6 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
- name: Fetch Repository
uses: actions/checkout@v4

- name: Install Nightly Rust Toolchain
- name: Install Stable Rust Toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
toolchain: stable

- name: Rust version
id: rustc-version
Expand Down Expand Up @@ -72,14 +72,13 @@ jobs:
- name: Fetch Repository
uses: actions/checkout@v4


- name: Rust Cache
uses: Swatinem/rust-cache@v2

- name: Install Nightly Rust Toolchain
- name: Install Stable Rust Toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
toolchain: stable

- name: Install jql
uses: taiki-e/install-action@v2
Expand Down Expand Up @@ -156,10 +155,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Install Nightly Rust Toolchain
- name: Install Stable Rust Toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
toolchain: stable
targets: ${{ matrix.target }}

- name: Rust Cache
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
rust: [nightly]
rust: [stable]
steps:
- uses: actions/checkout/@v4

- name: Rust Toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
toolchain: stable

- name: Rust Cache
if: startsWith(matrix.os, 'ubuntu-')
Expand Down
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- leetcode-api: add api `add_last_test_case`.
- lcode: when submit not pass test case can add last test case.

### Perf

- avoid unnecessary render and filter.
- Avoid unnecessary render and filter.

## [0.9.1] - 2024-05-18

### Fixed

Tui: submit panel can't vertical scroll.
- Tui: submit panel can't vertical scroll.

## [0.9.0] - 2024-05-14

Expand Down
Loading