diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b7b68cd..f8bfdd8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,6 +38,9 @@ jobs: rust: ["stable"] continue-on-error: ${{ matrix.rust != 'stable' }} runs-on: ${{ matrix.os }} + env: + # Reduce amount of data cached + CARGO_PROFILE_DEV_DEBUG: line-tables-only steps: - name: Checkout repository uses: actions/checkout@v4 diff --git a/.github/workflows/rust-next.yml b/.github/workflows/rust-next.yml index 9bfc8f5..959e25b 100644 --- a/.github/workflows/rust-next.yml +++ b/.github/workflows/rust-next.yml @@ -28,6 +28,9 @@ jobs: rust: "nightly" continue-on-error: ${{ matrix.rust != 'stable' }} runs-on: ${{ matrix.os }} + env: + # Reduce amount of data cached + CARGO_PROFILE_DEV_DEBUG: line-tables-only steps: - name: Checkout repository uses: actions/checkout@v4 diff --git a/CHANGELOG.md b/CHANGELOG.md index 9573b53..000f1e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ # Change Log All notable changes to this project will be documented in this file. -The format is based on [Keep a Changelog](http://keepachangelog.com/) -and this project adheres to [Semantic Versioning](http://semver.org/). +The format is based on [Keep a Changelog](https://keepachangelog.com/) +and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] - ReleaseDate diff --git a/Cargo.toml b/Cargo.toml index e676d7c..2db2f3f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -114,7 +114,7 @@ include.workspace = true [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"] +rustdoc-args = ["--generate-link-to-definition"] [package.metadata.release] pre-release-replacements = [ diff --git a/LICENSE-APACHE b/LICENSE-APACHE index 8dada3e..8f71f43 100644 --- a/LICENSE-APACHE +++ b/LICENSE-APACHE @@ -199,3 +199,4 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. + diff --git a/README.md b/README.md index 734e053..e9ad13d 100644 --- a/README.md +++ b/README.md @@ -33,8 +33,8 @@ For more information on using predicates, look at the Licensed under either of -* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) -* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) +* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) +* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) at your option. diff --git a/crates/core/CHANGELOG.md b/crates/core/CHANGELOG.md index ea1abab..2dcc5a6 100644 --- a/crates/core/CHANGELOG.md +++ b/crates/core/CHANGELOG.md @@ -1,8 +1,8 @@ # Change Log All notable changes to this project will be documented in this file. -The format is based on [Keep a Changelog](http://keepachangelog.com/) -and this project adheres to [Semantic Versioning](http://semver.org/). +The format is based on [Keep a Changelog](https://keepachangelog.com/) +and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] - ReleaseDate diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 64e8e0f..95b217a 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -12,7 +12,7 @@ include.workspace = true [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"] +rustdoc-args = ["--generate-link-to-definition"] [package.metadata.release] pre-release-replacements = [ diff --git a/crates/core/LICENSE-APACHE b/crates/core/LICENSE-APACHE index 8dada3e..8f71f43 100644 --- a/crates/core/LICENSE-APACHE +++ b/crates/core/LICENSE-APACHE @@ -199,3 +199,4 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. + diff --git a/crates/core/README.md b/crates/core/README.md index a6951ce..6fac3b4 100644 --- a/crates/core/README.md +++ b/crates/core/README.md @@ -14,8 +14,8 @@ Licensed under either of -* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) -* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) +* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) +* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) at your option. diff --git a/crates/core/release.toml b/crates/core/release.toml index 9ede551..f74b710 100644 --- a/crates/core/release.toml +++ b/crates/core/release.toml @@ -1 +1,2 @@ -pre-release-replacements = [] +dependent-version = "fix" +allow-branch = ["master"] diff --git a/crates/core/src/lib.rs b/crates/core/src/lib.rs index 8e7a37b..062766a 100644 --- a/crates/core/src/lib.rs +++ b/crates/core/src/lib.rs @@ -18,8 +18,9 @@ //! actual filtering without the filtering code knowing anything about user //! configuration. See the examples for how this can work. -#![warn(missing_docs, missing_debug_implementations)] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] +#![warn(missing_docs)] +#![warn(missing_debug_implementations)] mod core; pub use crate::core::*; diff --git a/crates/tree/CHANGELOG.md b/crates/tree/CHANGELOG.md index b34c853..e3e99d8 100644 --- a/crates/tree/CHANGELOG.md +++ b/crates/tree/CHANGELOG.md @@ -1,8 +1,8 @@ # Change Log All notable changes to this project will be documented in this file. -The format is based on [Keep a Changelog](http://keepachangelog.com/) -and this project adheres to [Semantic Versioning](http://semver.org/). +The format is based on [Keep a Changelog](https://keepachangelog.com/) +and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] - ReleaseDate diff --git a/crates/tree/Cargo.toml b/crates/tree/Cargo.toml index b560845..8b3387d 100644 --- a/crates/tree/Cargo.toml +++ b/crates/tree/Cargo.toml @@ -12,7 +12,7 @@ include.workspace = true [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"] +rustdoc-args = ["--generate-link-to-definition"] [package.metadata.release] pre-release-replacements = [ diff --git a/crates/tree/LICENSE-APACHE b/crates/tree/LICENSE-APACHE index 8dada3e..8f71f43 100644 --- a/crates/tree/LICENSE-APACHE +++ b/crates/tree/LICENSE-APACHE @@ -199,3 +199,4 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. + diff --git a/crates/tree/README.md b/crates/tree/README.md index 4125807..ac79613 100644 --- a/crates/tree/README.md +++ b/crates/tree/README.md @@ -14,7 +14,7 @@ Licensed under either of -* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) -* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) +* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or ) +* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) at your option. diff --git a/crates/tree/release.toml b/crates/tree/release.toml index 9ede551..dac7b6b 100644 --- a/crates/tree/release.toml +++ b/crates/tree/release.toml @@ -1 +1 @@ -pre-release-replacements = [] +allow-branch = ["master"] diff --git a/crates/tree/src/lib.rs b/crates/tree/src/lib.rs index 055184b..68ca312 100644 --- a/crates/tree/src/lib.rs +++ b/crates/tree/src/lib.rs @@ -8,7 +8,7 @@ //! Render `Case` as a tree. -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] use std::fmt; diff --git a/deny.toml b/deny.toml index 2982ba3..27bf59a 100644 --- a/deny.toml +++ b/deny.toml @@ -91,10 +91,12 @@ allow = [ "BSD-3-Clause", "MPL-2.0", "Unicode-DFS-2016", + "Unicode-3.0", "CC0-1.0", "ISC", "OpenSSL", "Zlib", + "NCSA", ] # The confidence threshold for detecting a license from license text. # The higher the value, the more closely the license text must be to the diff --git a/release.toml b/release.toml index dac7b6b..f74b710 100644 --- a/release.toml +++ b/release.toml @@ -1 +1,2 @@ +dependent-version = "fix" allow-branch = ["master"] diff --git a/src/lib.rs b/src/lib.rs index 43c809d..706a66e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -198,7 +198,7 @@ //! [`str_pred.normalize`]: prelude::PredicateStrExt::normalize() //! [`str_pred.trim`]: prelude::PredicateStrExt::trim() -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs)] #![warn(clippy::print_stderr)] #![warn(clippy::print_stdout)]