Skip to content

Commit f991662

Browse files
authored
Merge pull request #870 from rabbitmq/rabbitmq-dotnet-client-6.1.1-prep
Prep for 6.1.1
2 parents 7c9914a + 0d0b460 commit f991662

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## Changes Between 6.1.0 and 6.1.1
2+
3+
A full list of changes can be found in the GitHub milestone: [`6.1.0`](https://github.com/rabbitmq/rabbitmq-dotnet-client/milestone/50?closed=1).
4+
15
## Changes Between 6.0.0 and 6.1.0
26

37
This release continues with improvements to memory use and object allocations.

appveyor.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "6.1.0.{build}"
1+
version: "6.1.1.{build}"
22

33
platform: Any CPU
44
configuration: Release
@@ -9,8 +9,8 @@ image: Visual Studio 2019
99
cache:
1010
# Note: this must match the $rabbitmq_installer_path and $erlang_installer_path values in
1111
# tools\appveyor\install.ps1
12-
- "%HOMEDRIVE%%HOMEPATH%\\rabbitmq-server-3.8.3.exe"
13-
- "%HOMEDRIVE%%HOMEPATH%\\otp_win64_23.0.1.exe"
12+
- "%HOMEDRIVE%%HOMEPATH%\\rabbitmq-server-3.8.5.exe"
13+
- "%HOMEDRIVE%%HOMEPATH%\\otp_win64_23.0.2.exe"
1414

1515
install:
1616
- ps: .\tools\appveyor\install.ps1

tools/appveyor/install.ps1

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ Set-StrictMode -Version 2.0
77
Write-Host '[INFO] Removing all existing versions of Erlang...'
88
Get-ChildItem -Path 'C:\Program Files\erl*\Uninstall.exe' | %{ Start-Process -Wait -NoNewWindow -FilePath $_ -ArgumentList '/S' }
99

10-
$erlang_download_url = 'http://erlang.org/download/otp_win64_23.0.1.exe'
11-
$erlang_installer_path = Join-Path -Path $HOME -ChildPath 'otp_win64_23.0.1.exe'
10+
$erlang_download_url = 'http://erlang.org/download/otp_win64_23.0.2.exe'
11+
$erlang_installer_path = Join-Path -Path $HOME -ChildPath 'otp_win64_23.0.2.exe'
1212
$erlang_install_dir = Join-Path -Path $HOME -ChildPath 'erlang'
1313

1414
Write-Host '[INFO] Downloading Erlang...'
@@ -25,8 +25,8 @@ else
2525
Write-Host "[INFO] Installing Erlang to $erlang_install_dir..."
2626
& $erlang_installer_path '/S' "/D=$erlang_install_dir" | Out-Null
2727

28-
$rabbitmq_installer_download_url = 'https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.8.3/rabbitmq-server-3.8.3.exe'
29-
$rabbitmq_installer_path = Join-Path -Path $HOME -ChildPath 'rabbitmq-server-3.8.3.exe'
28+
$rabbitmq_installer_download_url = 'https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.8.3/rabbitmq-server-3.8.5.exe'
29+
$rabbitmq_installer_path = Join-Path -Path $HOME -ChildPath 'rabbitmq-server-3.8.5.exe'
3030

3131
$erlang_reg_path = 'HKLM:\SOFTWARE\Ericsson\Erlang'
3232
if (Test-Path 'HKLM:\SOFTWARE\WOW6432Node\')

0 commit comments

Comments
 (0)