Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: OctopusET/bat

Tags

tes2

Toggle tes2's commit message
ci: Align the scripts

test

Toggle test's commit message
ci: Align the scripts

v0.26.0

Toggle v0.26.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request sharkdp#3440 from sharkdp/prepare_release

Prepare to release v0.26.0

v0.25.0

Toggle v0.25.0's commit message
Bump version to v0.25.0

v0.24.0

Toggle v0.24.0's commit message
Bump version to v0.24.0

We need to bump 0.x.0 because the library API changed in incompatible
ways:

    $ cargo public-api diff
    Resolved `diff` to `diff 0.23.0`
    Removed items from the public API
    =================================
    (none)

    Changed items in the public API
    ===============================
    -pub fn bat::controller::Controller<'b>::run(&self, inputs: alloc::vec::Vec<bat::input::Input<'_>>) -> bat::error::Result<bool>
    +pub fn bat::controller::Controller<'b>::run(&self, inputs: alloc::vec::Vec<bat::input::Input<'_>>, output_buffer: core::option::Option<&mut dyn core::fmt::Write>) -> bat::error::Result<bool>
    -pub fn bat::controller::Controller<'b>::run_with_error_handler(&self, inputs: alloc::vec::Vec<bat::input::Input<'_>>, handle_error: impl core::ops::function::Fn(&bat::error::Error, &mut dyn std::io::Write)) -> bat::error::Result<bool>
    +pub fn bat::controller::Controller<'b>::run_with_error_handler(&self, inputs: alloc::vec::Vec<bat::input::Input<'_>>, output_buffer: core::option::Option<&mut dyn core::fmt::Write>, handle_error: impl core::ops::function::Fn(&bat::error::Error, &mut dyn std::io::Write)) -> bat::error::Result<bool>

    Added items to the public API
    =============================
    [...]

v0.23.0

Toggle v0.23.0's commit message
Update man page regarding --nonprintable-notation

v0.22.1

Toggle v0.22.1's commit message
Bump version to v0.22.1

v0.22.0

Toggle v0.22.0's commit message
Update binary assets

v0.21.0

Toggle v0.21.0's commit message
assets/create.sh

v0.20.0

Toggle v0.20.0's commit message
Prepare for v0.20.0 release

Since we have added new enum variants to the `StyleComponent` which was
not previously marked `#[non_exhaustive]`, we must bump left-most
non-zero version number (see
[specifying-dependencies](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#specifying-dependencies-from-cratesio)).
Otherwise client code that do exhaustive matches on `StyleComponent`
will stop compiling.