From 7b6b5f72055d7540c2a82f5f5d953116ff937375 Mon Sep 17 00:00:00 2001 From: Maciej Kwidzinski Date: Wed, 12 Jun 2024 12:49:10 +0200 Subject: [PATCH] Mark botched 3.1.5 I did tag release-3.2.0-alpha, but on the branch commit, not after the rebase/merge. https://packages.atlassian.com/maven-central/com/atlassian/performance/tools/aws-infrastructure/3.1.5/ --- CHANGELOG.md | 5 ++++- .../tools/awsinfrastructure/api/jira/DataCenterFormula.kt | 3 +++ .../tools/awsinfrastructure/api/jira/StandaloneFormula.kt | 3 +++ 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index acfce82d..8ee9b165 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,7 +21,10 @@ Adding a requirement of a major version of a dependency is breaking a contract. Dropping a requirement of a major version of a dependency is a new contract. ## [Unreleased] -[Unreleased]: https://github.com/atlassian/aws-infrastructure/compare/release-3.1.4...master +[Unreleased]: https://github.com/atlassian/aws-infrastructure/compare/release-3.1.5...master + +## 3.1.5 - 2024-06-12 +It was a botched 3.2.0 release. Switch to 3.2.0 instead. ### Added - Wait for running status via: diff --git a/src/main/kotlin/com/atlassian/performance/tools/awsinfrastructure/api/jira/DataCenterFormula.kt b/src/main/kotlin/com/atlassian/performance/tools/awsinfrastructure/api/jira/DataCenterFormula.kt index bc0963ff..9711a357 100644 --- a/src/main/kotlin/com/atlassian/performance/tools/awsinfrastructure/api/jira/DataCenterFormula.kt +++ b/src/main/kotlin/com/atlassian/performance/tools/awsinfrastructure/api/jira/DataCenterFormula.kt @@ -413,6 +413,9 @@ class DataCenterFormula private constructor( fun accessRequester(accessRequester: AccessRequester) = apply { this.accessRequester = accessRequester } + /** + * @since 3.2.0 + */ fun waitForRunning(waitForRunning: Boolean) = apply { this.waitForRunning = waitForRunning } /** diff --git a/src/main/kotlin/com/atlassian/performance/tools/awsinfrastructure/api/jira/StandaloneFormula.kt b/src/main/kotlin/com/atlassian/performance/tools/awsinfrastructure/api/jira/StandaloneFormula.kt index a41243db..99be96b1 100644 --- a/src/main/kotlin/com/atlassian/performance/tools/awsinfrastructure/api/jira/StandaloneFormula.kt +++ b/src/main/kotlin/com/atlassian/performance/tools/awsinfrastructure/api/jira/StandaloneFormula.kt @@ -319,6 +319,9 @@ class StandaloneFormula private constructor( fun accessRequester(accessRequester: AccessRequester) = apply { this.accessRequester = accessRequester } + /** + * @since 3.2.0 + */ fun waitForRunning(waitForRunning: Boolean) = apply { this.waitForRunning = waitForRunning } fun waitForUpgrades(waitForUpgrades: Boolean) = apply { this.waitForUpgrades = waitForUpgrades }