diff --git a/CHANGELOG.MD b/CHANGELOG.MD
index 854de575..a029ef21 100644
--- a/CHANGELOG.MD
+++ b/CHANGELOG.MD
@@ -4,10 +4,20 @@ See also [releases](https://github.com/NLog/NLog.Web/releases) and [milestones](
Date format: (year/month/day)
+### v4.9.2-aspnetcore (2020/04/20)
+- [#546](https://github.com/NLog/NLog.Web/pull/546) ${aspnet-request-ip}: make ForwardedForHeader configurable (@304NotModified)
+- [#546](https://github.com/NLog/NLog.Web/pull/546) ${aspnet-request-url} Added UseRawTarget option (@sm-g, @304NotModified)
+
+### v4.9.2-aspnet4 (2020/04/20)
+- [#546](https://github.com/NLog/NLog.Web/pull/546) ${aspnet-request-ip}: make ForwardedForHeader configurable (@304NotModified)
+
### v4.9.1-aspnetcore (2020/03/25)
-- [#524](https://github.com/NLog/NLog.Web/pull/524) ${aspnet-traceidentifier} should automatically check Activity.Current.Id for NetCore3 (@snakefoot)
+- [#524](https://github.com/NLog/NLog.Web/pull/524) ${aspnet-traceidentifier} should automatically check Activity.Current.Id for .NET Core 3 (@snakefoot)
- [#527](https://github.com/NLog/NLog.Web/pull/527) Improved AddNLog with LoggingConfiguration to handle custom LogFactory (@snakefoot)
+### v4.9.1-aspnet4 (2020/03/25)
+- Updated dependencies
+
### v4.9.0-aspnetcore (2019/10/11)
This version adds support for ASP.NET Core 3 and some nice renderers has been added and improved!
diff --git a/appveyor.yml b/appveyor.yml
index d9dfcefd..55d293c3 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,4 +1,4 @@
-version: 4.9.1.{build}
+version: 4.9.2.{build}
clone_folder: c:\projects\nlogweb
configuration: Release
image: Visual Studio 2019
@@ -22,7 +22,7 @@ skip_tags: true
build_script:
- ps: |
- $versionPrefix = "4.9.1"
+ $versionPrefix = "4.9.2"
$versionSuffix = ""
$versionBuild = $versionPrefix + "." + ${env:APPVEYOR_BUILD_NUMBER}
$versionNuget = $versionPrefix
diff --git a/src/NLog.Web.AspNetCore/NLog.Web.AspNetCore.csproj b/src/NLog.Web.AspNetCore/NLog.Web.AspNetCore.csproj
index 40a1b424..76836095 100644
--- a/src/NLog.Web.AspNetCore/NLog.Web.AspNetCore.csproj
+++ b/src/NLog.Web.AspNetCore/NLog.Web.AspNetCore.csproj
@@ -20,8 +20,10 @@ Supported platforms:
NLog.Web.AspNetCore
logging;log;NLog;web;aspnet;aspnetcore;MVC;Microsoft.Extensions.Logging;httpcontext;session
-- ${aspnet-traceidentifier} should automatically check Activity.Current.Id for NetCore3 (@snakefoot)
-- Improved AddNLog with LoggingConfiguration to handle custom LogFactory (@snakefoot)
+- ${aspnet-request-ip}: make ForwardedForHeader configurable (@304NotModified)
+- ${aspnet-request-url} Added UseRawTarget option (@sm-g, @304NotModified)
+
+See also https://github.com/NLog/NLog.Web/releases
https://nlog-project.org/N.png
https://github.com/NLog/NLog.Web
diff --git a/src/NLog.Web/NLog.Web.csproj b/src/NLog.Web/NLog.Web.csproj
index 7efdcf0e..9a7c6798 100644
--- a/src/NLog.Web/NLog.Web.csproj
+++ b/src/NLog.Web/NLog.Web.csproj
@@ -19,6 +19,8 @@ For ASP.NET Core: Check https://www.nuget.org/packages/NLog.Web.AspNetCore
nlog;log;logging;target;layoutrenderer;web;asp.net;MVC;httpcontext
+ See https://github.com/NLog/NLog.Web/releases
+
https://nlog-project.org/N.png
https://github.com/NLog/NLog.Web