bump preview_since version

This commit is contained in:
Jonas Vacek 2025-10-31 17:03:27 +01:00
parent ec2c18294e
commit 75d5b7e1dc
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ use crate::{AlwaysFixableViolation, Edit, Fix};
/// ## References /// ## References
/// - [Django documentation: URL dispatcher](https://docs.djangoproject.com/en/stable/topics/http/urls/) /// - [Django documentation: URL dispatcher](https://docs.djangoproject.com/en/stable/topics/http/urls/)
#[derive(ViolationMetadata)] #[derive(ViolationMetadata)]
#[violation_metadata(preview_since = "v0.14.1")] #[violation_metadata(preview_since = "v0.14.4")]
pub(crate) struct DjangoURLPathWithLeadingSlash { pub(crate) struct DjangoURLPathWithLeadingSlash {
url_pattern: String, url_pattern: String,
} }

View File

@ -41,7 +41,7 @@ use crate::{AlwaysFixableViolation, Edit, Fix};
/// ## References /// ## References
/// - [Django documentation: URL dispatcher](https://docs.djangoproject.com/en/stable/topics/http/urls/) /// - [Django documentation: URL dispatcher](https://docs.djangoproject.com/en/stable/topics/http/urls/)
#[derive(ViolationMetadata)] #[derive(ViolationMetadata)]
#[violation_metadata(preview_since = "v0.14.1")] #[violation_metadata(preview_since = "v0.14.4")]
pub(crate) struct DjangoURLPathWithoutTrailingSlash { pub(crate) struct DjangoURLPathWithoutTrailingSlash {
url_pattern: String, url_pattern: String,
} }