Skip to content

Commit

Permalink
Release 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bensadeh committed Apr 1, 2024
1 parent fad2dfc commit f1a39f9
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Changelog
## 3.1.0

- Improve parsing of very large log files
## 3.0.1

- Improve parsing of very large log files

## 3.0.0

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tailspin"
version = "3.1.0"
version = "3.0.1"
edition = "2021"
authors = ["Ben Sadeh"]
description = "A log file highlighter"
Expand Down
2 changes: 1 addition & 1 deletion completions/tspin.bash
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ _tspin() {

case "${cmd}" in
tspin)
opts="-f -e -p -c -h -V --follow --start-at-end --print --config-path --listen-command --words-red --words-green --words-yellow --words-blue --words-magenta --words-cyan --disable-builtin-keywords --disable-booleans --disable-severity --disable-rest --z-generate-shell-completions --help --version [FILE]"
opts="-f -e -p -c -h -V --follow --start-at-end --print --config-path --listen-command --words-red --words-green --words-yellow --words-blue --words-magenta --words-cyan --disable-builtin-keywords --disable-booleans --disable-severity --disable-rest --suppress-output --z-generate-shell-completions --help --version [FILE]"
if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
Expand Down
1 change: 1 addition & 0 deletions completions/tspin.fish
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@ complete -c tspin -l disable-builtin-keywords -d 'Disable the highlighting of al
complete -c tspin -l disable-booleans -d 'Disable the highlighting of booleans and nulls'
complete -c tspin -l disable-severity -d 'Disable the highlighting of severity levels'
complete -c tspin -l disable-rest -d 'Disable the highlighting of REST verbs'
complete -c tspin -l suppress-output -d 'Suppress all output (for debugging and benchmarking)'
complete -c tspin -s h -l help -d 'Print help'
complete -c tspin -s V -l version -d 'Print version'
1 change: 1 addition & 0 deletions completions/tspin.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ _tspin() {
'--disable-booleans[Disable the highlighting of booleans and nulls]' \
'--disable-severity[Disable the highlighting of severity levels]' \
'--disable-rest[Disable the highlighting of REST verbs]' \
'--suppress-output[Suppress all output (for debugging and benchmarking)]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
Expand Down
8 changes: 4 additions & 4 deletions man/tspin.1
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
'\" t
.\" Title: tspin
.\" Author: [see the "AUTHOR(S)" section]
.\" Generator: Asciidoctor 2.0.20
.\" Date: 2024-01-21
.\" Generator: Asciidoctor 2.0.22
.\" Date: 2024-04-01
.\" Manual: tailspin
.\" Source: tailspin 3.0.0
.\" Source: tailspin 3.0.1
.\" Language: English
.\"
.TH "TSPIN" "1" "2024-01-21" "tailspin 3.0.0" "tailspin"
.TH "TSPIN" "1" "2024-04-01" "tailspin 3.0.1" "tailspin"
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.ss \n[.ss] 0
Expand Down

0 comments on commit f1a39f9

Please sign in to comment.