mirror of
https://github.com/sharkdp/bat.git
synced 2024-11-21 23:33:26 +01:00
Bump version to v0.17.0
This commit is contained in:
parent
277cc5fa21
commit
8884104e82
25
CHANGELOG.md
25
CHANGELOG.md
@ -3,12 +3,30 @@
|
||||
|
||||
## Features
|
||||
|
||||
- Adjust pager configuration to comply with `--wrap=never`, see #1255 (@gahag)
|
||||
## Bugfixes
|
||||
|
||||
## Other
|
||||
|
||||
## Syntaxes
|
||||
|
||||
## New themes
|
||||
|
||||
## `bat` as a library
|
||||
|
||||
## Packaging
|
||||
|
||||
|
||||
# v0.17.0
|
||||
|
||||
## Features
|
||||
|
||||
- Added a new `--style` value, `rule`, which adds a simple horizontal ruled line between files, see #1276 (@tommilligan)
|
||||
- Pass `-S` ("chop long lines") to `less` if `--wrap=never` is set in `bat`, see #1255 (@gahag)
|
||||
|
||||
## Bugfixes
|
||||
|
||||
- Throws an error when `bat` is being used as `pager`, see #1343 (@adrian-rivera)
|
||||
- Detect infinite loop when input and output are the same, see #1193 and #1197 (@niklasmohrin)
|
||||
- Throw an error when `bat` is being used as `pager`, see #1343 (@adrian-rivera)
|
||||
- Bash syntax highlighting not selected for `*.ebuild` and `*.eclass` files, see #1292 (@sharkdp)
|
||||
- Fix `zsh` completion when using `-p`, see #1320 (@xzfc)
|
||||
|
||||
@ -26,9 +44,6 @@
|
||||
|
||||
- Coldark, see #1329 (@armandphilippot)
|
||||
|
||||
## `bat` as a library
|
||||
|
||||
## Packaging
|
||||
|
||||
# v0.16.0
|
||||
|
||||
|
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -92,7 +92,7 @@ checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
|
||||
|
||||
[[package]]
|
||||
name = "bat"
|
||||
version = "0.16.0"
|
||||
version = "0.17.0"
|
||||
dependencies = [
|
||||
"ansi_colours",
|
||||
"ansi_term 0.12.1",
|
||||
|
@ -7,7 +7,7 @@ license = "MIT/Apache-2.0"
|
||||
name = "bat"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/sharkdp/bat"
|
||||
version = "0.16.0"
|
||||
version = "0.17.0"
|
||||
exclude = [
|
||||
"assets/syntaxes/*",
|
||||
"assets/themes/*",
|
||||
|
@ -211,7 +211,7 @@ the most recent release of `bat`, download the latest `.deb` package from the
|
||||
[release page](https://github.com/sharkdp/bat/releases) and install it via:
|
||||
|
||||
```bash
|
||||
sudo dpkg -i bat_0.16.0_amd64.deb # adapt version number and architecture
|
||||
sudo dpkg -i bat_0.17.0_amd64.deb # adapt version number and architecture
|
||||
```
|
||||
|
||||
### On Alpine Linux
|
||||
|
@ -191,7 +191,7 @@ ln -s /usr/bin/batcat ~/.local/bin/bat
|
||||
batの最新リリースを実行する場合、または Ubuntu/Debian の古いバージョンを使用している場合は、[release page](https://github.com/sharkdp/bat/releases) から最新の `.deb` パッケージをダウンロードし、
|
||||
次の方法でインストールします:
|
||||
```bash
|
||||
sudo dpkg -i bat_0.16.0_amd64.deb # adapt version number and architecture
|
||||
sudo dpkg -i bat_0.17.0_amd64.deb # adapt version number and architecture
|
||||
```
|
||||
|
||||
### On Alpine Linux
|
||||
|
@ -170,7 +170,7 @@ apt install bat
|
||||
만약 최근 릴리즈된 bat을 사용을 원하거나 buntu/Debian 예전 버전을 사용하는 경우, [릴리즈 페이지](https://github.com/sharkdp/bat/releases)에서 다음과 같이 `.deb` 패키지를 받아 설치 할 수도 있습니다:
|
||||
|
||||
```bash
|
||||
sudo dpkg -i bat_0.16.0_amd64.deb # adapt version number and architecture
|
||||
sudo dpkg -i bat_0.17.0_amd64.deb # adapt version number and architecture
|
||||
```
|
||||
|
||||
### On Alpine Linux
|
||||
|
@ -185,7 +185,7 @@ ln -s /usr/bin/batcat ~/.local/bin/bat
|
||||
[release page](https://github.com/sharkdp/bat/releases) и установить так:
|
||||
|
||||
```bash
|
||||
sudo dpkg -i bat_0.16.0_amd64.deb # измените архитектуру и версию
|
||||
sudo dpkg -i bat_0.17.0_amd64.deb # измените архитектуру и версию
|
||||
```
|
||||
|
||||
### Alpine Linux
|
||||
|
Loading…
Reference in New Issue
Block a user