Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 23 additions & 16 deletions Cargo.lock

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

3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
[package]
name = "cnf"
version = "0.8.1"
version = "0.9.0"
edition = "2021"
Comment on lines 1 to 4
Copy link

Copilot AI Sep 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removing the rust-version constraint may cause compatibility issues for users on older Rust versions. Consider keeping the rust-version field to document the minimum supported Rust version, especially for a library crate.

Copilot uses AI. Check for mistakes.
rust-version = "1.77.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion test/bats
Submodule bats updated 49 files
+1 −1 .github/workflows/codespell.yml
+1 −1 .github/workflows/dependency-review.yml
+2 −2 .github/workflows/release.yml
+6 −11 .github/workflows/release_dockerhub.yml
+3 −3 .github/workflows/scorecard.yml
+1 −1 .github/workflows/set_nounset.bash
+52 −24 .github/workflows/tests.yml
+4 −2 Dockerfile
+1 −1 contrib/rpm/bats.spec
+0 −1 docker-compose.override.dist
+0 −1 docker-compose.yml
+46 −0 docs/CHANGELOG.md
+1 −1 docs/CONTRIBUTING.md
+5 −1 docs/source/index.rst
+1 −1 docs/source/installation.rst
+2 −2 docs/source/support-matrix.rst
+8 −8 docs/source/tutorial.rst
+100 −11 docs/source/writing-tests.md
+1 −1 install.sh
+7 −11 lib/bats-core/preprocessing.bash
+4 −12 lib/bats-core/test_functions.bash
+10 −6 lib/bats-core/tracing.bash
+1 −2 libexec/bats-core/bats
+7 −4 libexec/bats-core/bats-exec-file
+21 −14 libexec/bats-core/bats-exec-suite
+2 −1 libexec/bats-core/bats-exec-test
+97 −29 libexec/bats-core/bats-gather-tests
+1 −1 man/bats.7.ronn
+1 −1 package.json
+51 −0 test/bats.bats
+19 −0 test/fixtures/bats/failure_callback.bats
+11 −0 test/fixtures/bats/failure_callback_setup_file.bats
+3 −0 test/fixtures/bats/failure_callback_setup_suite/dummy.bats
+7 −0 test/fixtures/bats/failure_callback_setup_suite/setup_suite.bash
+9 −0 test/fixtures/bats/focused_filtered_out.bats
+1 −1 test/fixtures/bats/issue-205.bats
+5 −0 test/fixtures/suite/errors_in_multiple_load/a.bats
+5 −0 test/fixtures/suite/errors_in_multiple_load/b.bats
+5 −0 test/fixtures/suite/errors_in_multiple_load/c.bats
+1 −0 test/fixtures/suite/errors_in_multiple_load/test_helper.bash
+5 −0 test/fixtures/suite/multiple_load_constants/a.bats
+5 −0 test/fixtures/suite/multiple_load_constants/b.bats
+2 −0 test/fixtures/suite/multiple_load_constants/test_helper.bash
+2 −1 test/install.bats
+2 −1 test/root.bats
+43 −0 test/suite.bats
+1 −1 test/suite_setup_teardown.bats
+9 −2 test/test_helper.bash
+3 −12 test/warnings.bats
Loading