Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelldi committed Oct 28, 2024
1 parent bb164e9 commit 6da090c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions PluginsAndFeatures/azure-toolkit-for-rider/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

## [Unreleased]

### Fixed

- Fix the 4.99.0 release of the core tools ([#944](https://github.com/JetBrains/azure-tools-for-intellij/issues/944), [RIDER-119093](https://youtrack.jetbrains.com/issue/RIDER-119093))

## [4.3.1] - 2024-10-25

### Fixed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ class FunctionCoreToolsManager {
)
}

private suspend fun ensureReleaseDownloaded(downloadInfo: FunctionCoreToolsDownloadInfo): File? {
private fun ensureReleaseDownloaded(downloadInfo: FunctionCoreToolsDownloadInfo): File? {
if (downloadInfo.downloadFolderForTagAndRelease.exists()) {
return downloadInfo.downloadFolderForTagAndRelease
}
Expand All @@ -211,7 +211,7 @@ class FunctionCoreToolsManager {
return null
}

private suspend fun downloadRelease(downloadInfo: FunctionCoreToolsDownloadInfo) {
private fun downloadRelease(downloadInfo: FunctionCoreToolsDownloadInfo) {
val tempFile = FileUtil.createTempFile(
File(FileUtil.getTempDirectory()),
"AzureFunctions-${downloadInfo.release.functionsVersion}-${downloadInfo.release.coreToolsVersion}",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pluginGroup = com.jetbrains
pluginName = azure-toolkit-for-rider
pluginRepositoryUrl = https://github.com/JetBrains/azure-tools-for-intellij
# SemVer format -> https://semver.org
pluginVersion = 4.3.1
pluginVersion = 4.3.2

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 243
Expand Down

0 comments on commit 6da090c

Please sign in to comment.