Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/ci_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: cargo test

on:
push:
branches-ignore: 'main'
paths-ignore:
- '*.md'
pull_request:
types: [opened, edited, reopened]

env:
CARGO_TERM_COLOR: always

jobs:
build_and_test:
name: Rust project - latest
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo test --verbose
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,26 @@

## Unreleased

## v2.15.0 (2024-12-30)

### Added

- `<C-d>` and `<C-u>` to go up/down 1/2 page in both normal mode and visual mode.

### Changed

- Avoid displaying big text in preview area by adding PreviewType::TooBigText (over 1MB).

### Fixed

- Rewrite test_has_write_permission by set_readonly.

## v2.14.0 (2024-09-29)

### Changed

- Update dependencies for Rust 1.81.0. MSRV is the same as before (1.74.1).

## v2.13.0 (2024-04-07)

### Added
Expand Down
Loading
Loading