Skip to content

Commit

Permalink
Merge pull request #16 from saying121/dev
Browse files Browse the repository at this point in the history
Set rust toolchain stable channel and update dependencies
  • Loading branch information
saying121 authored Jul 26, 2024
2 parents caf3d95 + ae85e9b commit 31bb635
Show file tree
Hide file tree
Showing 42 changed files with 1,053 additions and 1,190 deletions.
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

0 comments on commit 31bb635

Please sign in to comment.