- Update to 0.23.0:
Features: * Implemented -S and --chop-long-lines flags as aliases for --wrap=never. See #2309 * Breaking change: Environment variables can now override config file settings (but command-line arguments still have the highest precedence), see #1152, #1281, and #2381 * Implemented --nonprintable-notation=caret to support showing non-printable characters using caret notation. See #2429 Bugfixes: * Fix bat cache --clear not clearing the --target dir if specified. See #2393 Other: * Various bash completion improvements, see #2310 * Disable completion of cache subcommand, see #2399 * Signifigantly improve startup performance on macOS, see #2442 * Bump MSRV to 1.62, see #2496 Syntaxes: * Added support for Ada, see #1300 and #2316 * Added todo.txt syntax, see #2375 * Improve Manpage.sublime-syntax. See #2364 and #2461 * Added a new requirements.txt syntax, see #2361 * Added a new VimHelp syntax, see #2366 * Associate pdm.lock with TOML syntax, see #2410 * Todo.txt: Fix highlighting of contexts and projects at beginning of done.txt, see #2411 * cmd-help: overhaul scope names (colors) to improve theme support; misc syntax improvements. See #2419 * Added support for Crontab, see #2509 OBS-URL: https://build.opensuse.org/package/show/utilities/bat?expand=0&rev=41
This commit is contained in:
parent
fcb7d6a22a
commit
eef51771e3
2
_service
2
_service
@ -4,7 +4,7 @@
|
|||||||
<service name="obs_scm" mode="localonly">
|
<service name="obs_scm" mode="localonly">
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="url">https://github.com/sharkdp/bat</param>
|
<param name="url">https://github.com/sharkdp/bat</param>
|
||||||
<param name="revision">v0.22.1</param>
|
<param name="revision">v0.23.0</param>
|
||||||
<param name="versionformat">@PARENT_TAG@</param>
|
<param name="versionformat">@PARENT_TAG@</param>
|
||||||
<param name="versionrewrite-pattern">v(.*)</param>
|
<param name="versionrewrite-pattern">v(.*)</param>
|
||||||
</service>
|
</service>
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:d28346dc9db8a8605de49f18e3ec7294fbcf4ff96241e447295c4031708a8a1f
|
|
||||||
size 56135196
|
|
3
bat-0.23.0.tar.xz
Normal file
3
bat-0.23.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:cb1976b4030f4357507c05460ff1fd3ab86c6c2a6ddc087ed0eb62aeab085f30
|
||||||
|
size 56215100
|
32
bat.changes
32
bat.changes
@ -1,3 +1,35 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Mar 25 22:44:24 UTC 2023 - Michael Vetter <mvetter@suse.com>
|
||||||
|
|
||||||
|
- Update to 0.23.0:
|
||||||
|
Features:
|
||||||
|
* Implemented -S and --chop-long-lines flags as aliases for
|
||||||
|
--wrap=never. See #2309
|
||||||
|
* Breaking change: Environment variables can now override config
|
||||||
|
file settings (but command-line arguments still have the highest
|
||||||
|
precedence), see #1152, #1281, and #2381
|
||||||
|
* Implemented --nonprintable-notation=caret to support showing
|
||||||
|
non-printable characters using caret notation. See #2429
|
||||||
|
Bugfixes:
|
||||||
|
* Fix bat cache --clear not clearing the --target dir if specified. See #2393
|
||||||
|
Other:
|
||||||
|
* Various bash completion improvements, see #2310
|
||||||
|
* Disable completion of cache subcommand, see #2399
|
||||||
|
* Signifigantly improve startup performance on macOS, see #2442
|
||||||
|
* Bump MSRV to 1.62, see #2496
|
||||||
|
Syntaxes:
|
||||||
|
* Added support for Ada, see #1300 and #2316
|
||||||
|
* Added todo.txt syntax, see #2375
|
||||||
|
* Improve Manpage.sublime-syntax. See #2364 and #2461
|
||||||
|
* Added a new requirements.txt syntax, see #2361
|
||||||
|
* Added a new VimHelp syntax, see #2366
|
||||||
|
* Associate pdm.lock with TOML syntax, see #2410
|
||||||
|
* Todo.txt: Fix highlighting of contexts and projects at beginning
|
||||||
|
of done.txt, see #2411
|
||||||
|
* cmd-help: overhaul scope names (colors) to improve theme
|
||||||
|
support; misc syntax improvements. See #2419
|
||||||
|
* Added support for Crontab, see #2509
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Nov 30 22:20:13 UTC 2022 - Filippo Bonazzi <filippo.bonazzi@suse.com>
|
Wed Nov 30 22:20:13 UTC 2022 - Filippo Bonazzi <filippo.bonazzi@suse.com>
|
||||||
|
|
||||||
|
4
bat.spec
4
bat.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package bat
|
# spec file for package bat
|
||||||
#
|
#
|
||||||
# Copyright (c) 2022 SUSE LLC
|
# Copyright (c) 2023 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: bat
|
Name: bat
|
||||||
Version: 0.22.1
|
Version: 0.23.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A cat(1) clone with syntax highlighting and Git integration
|
Summary: A cat(1) clone with syntax highlighting and Git integration
|
||||||
License: Apache-2.0 OR MIT
|
License: Apache-2.0 OR MIT
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:7b142fbc3ab44c7ecd5e3cf6b9ffc6ac94979905d5477a1d5f4a68bfd742adc7
|
oid sha256:9270dc831063f7e4bfd0ffe7d884d974d7f3200144731027c6ed0adcaf633ad2
|
||||||
size 18598028
|
size 20918644
|
||||||
|
Loading…
Reference in New Issue
Block a user