Skip to content

Commit

Permalink
Releasing 3.8.1 with a tweak to the --pytest rules
Browse files Browse the repository at this point in the history
  • Loading branch information
petdance committed Jan 1, 2025
1 parent 979b990 commit 5d987c3
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
7 changes: 7 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
History file for ack 3. https://beyondgrep.com/


v3.8.1 Tue Dec 31 21:05:49 CST 2024
========================================
[ENHANCEMENTS]
The rules for Pytest were modified so that zsh's ad hoc scraping of
filetypes for tab completion wouldn't blow up. (GH #386)


v3.8.0 Fri Dec 20 22:07:26 CST 2024
========================================
[FEATURES]
Expand Down
2 changes: 1 addition & 1 deletion ack
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
use strict;
use warnings;

our $VERSION = 'v3.8.0'; # Check https://beyondgrep.com/ for updates
our $VERSION = 'v3.8.1'; # Check https://beyondgrep.com/ for updates

use 5.010001;

Expand Down
2 changes: 1 addition & 1 deletion lib/App/Ack.pm
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ A container for functions for the ack program.
our $VERSION;
our $COPYRIGHT;
BEGIN {
$VERSION = 'v3.8.0'; # Check https://beyondgrep.com/ for updates
$VERSION = 'v3.8.1'; # Check https://beyondgrep.com/ for updates
$COPYRIGHT = 'Copyright 2005-2024 Andy Lester.';
}
our $STANDALONE = 0;
Expand Down
6 changes: 4 additions & 2 deletions lib/App/Ack/ConfigDefault.pm
Original file line number Diff line number Diff line change
Expand Up @@ -420,8 +420,10 @@ sub _options_block {
# Pytest
# https://pytest.org/
--type-add=pytest:match:_test[.]py$
--type-add=pytest:match:^test_.*[.]py$
# Pytest files are *.py files that start with test_ or end with _test.py
# https://docs.pytest.org/en/stable/explanation/goodpractices.html#test-discovery
--type-add=pytest:match:_test\.py$
--type-add=pytest:match:^test_.*\.py$
# R
# https://www.r-project.org/
Expand Down

0 comments on commit 5d987c3

Please sign in to comment.