Skip to content

Commit

Permalink
Mark botched 3.1.5
Browse files Browse the repository at this point in the history
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/
  • Loading branch information
dagguh committed Jun 12, 2024
1 parent e06ee97 commit 7b6b5f7
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 }

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 }

Expand Down

0 comments on commit 7b6b5f7

Please sign in to comment.