From 69b68d3fa9648e5111a3fb0faa2ca56bc2b15a49 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Tue, 20 Jun 2023 11:23:49 +0200 Subject: [PATCH] Update comment --- tools/automator/src/announcement.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/automator/src/announcement.rs b/tools/automator/src/announcement.rs index cc6aedf30..e24d4c41c 100644 --- a/tools/automator/src/announcement.rs +++ b/tools/automator/src/announcement.rs @@ -29,10 +29,10 @@ pub async fn create_release_announcement( let pull_requests = pull_requests_since_last_release.pull_requests.into_values(); - // For now, it's good enough to just release a new minor version every week. + // For now, it's good enough to just release a new minor version every time. // We could also determine whether there were breaking changes to make sure - // we actually need it, but as of now, breaking changes every week are - // pretty much a given. + // we actually need it, but as of now, breaking changes are pretty much a + // given. let mut version = pull_requests_since_last_release.version_of_last_release; version.minor += 1;