diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 8252350b7b..943c80e112 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -1,3 +1,18 @@
+#### 4.6.1 - 02/2022
+
+* Fix Type parameter comment lost in formatting. [#2052](https://github.com/fsprojects/fantomas/issues/2052)
+* Fix Unicode string containing "\000" is replaced by null character when being formatted. [#2050](https://github.com/fsprojects/fantomas/issues/2050)
+* Fix Idempotency problem when comment after opening bracket in Elmish expression without children. [#2037](https://github.com/fsprojects/fantomas/issues/2037)
+* Fix Default settings in .editorconfig files. [#2030](https://github.com/fsprojects/fantomas/issues/2030)
+* Fix "cannot determine if synExpr Paren" when Lambda after If expression. [#2015](https://github.com/fsprojects/fantomas/issues/2015)
+* Fix Comment removed in do binding. [#1875](https://github.com/fsprojects/fantomas/issues/1875)
+* Fix Comment after arrow is missing in SynExpr.Lambda. [#1870](https://github.com/fsprojects/fantomas/issues/1870)
+* Fix else if turned into elif when KeepIndentInBranch = true. [#1818](https://github.com/fsprojects/fantomas/issues/1818)
+* Fix Comment after closing brace in nested record is lost with default settings. [#1172](https://github.com/fsprojects/fantomas/issues/1172)
+* Fix Inconsistent spacing of multiline object expressions in lists with default settings. [#1170](https://github.com/fsprojects/fantomas/issues/1170)
+* Fix type definition in signature file wrapped with hash directives. [#1115](https://github.com/fsprojects/fantomas/issues/1115)
+* Fix Strict mode strips literal strings. [#560](https://github.com/fsprojects/fantomas/issues/560)
+
#### 4.6.0 - 01/2022
* Unify Fantomas versions across editors. [#1844](https://github.com/fsprojects/fantomas/issues/1844)
diff --git a/src/Fantomas.CoreGlobalTool.Tests/Fantomas.CoreGlobalTool.Tests.fsproj b/src/Fantomas.CoreGlobalTool.Tests/Fantomas.CoreGlobalTool.Tests.fsproj
index 5a34a67dd7..aba05c83b5 100644
--- a/src/Fantomas.CoreGlobalTool.Tests/Fantomas.CoreGlobalTool.Tests.fsproj
+++ b/src/Fantomas.CoreGlobalTool.Tests/Fantomas.CoreGlobalTool.Tests.fsproj
@@ -4,7 +4,7 @@
net5.0
false
false
- 4.6.0
+ 4.6.1
FS0988
FS0025
diff --git a/src/Fantomas.CoreGlobalTool/Fantomas.CoreGlobalTool.fsproj b/src/Fantomas.CoreGlobalTool/Fantomas.CoreGlobalTool.fsproj
index 86ad8368d2..7b98668c96 100644
--- a/src/Fantomas.CoreGlobalTool/Fantomas.CoreGlobalTool.fsproj
+++ b/src/Fantomas.CoreGlobalTool/Fantomas.CoreGlobalTool.fsproj
@@ -8,7 +8,7 @@
Major
fantomas
True
- 4.6.0
+ 4.6.1
fantomas-tool
FS0025
LICENSE.md
diff --git a/src/Fantomas.Extras/Fantomas.Extras.fsproj b/src/Fantomas.Extras/Fantomas.Extras.fsproj
index 0403611acc..cfeca84882 100644
--- a/src/Fantomas.Extras/Fantomas.Extras.fsproj
+++ b/src/Fantomas.Extras/Fantomas.Extras.fsproj
@@ -2,7 +2,7 @@
netstandard2.0
- 4.6.0
+ 4.6.1
Utility package for Fantomas
FS0025
LICENSE.md
diff --git a/src/Fantomas.Tests/ElmishTests.fs b/src/Fantomas.Tests/ElmishTests.fs
index dbed124f25..e88f40b744 100644
--- a/src/Fantomas.Tests/ElmishTests.fs
+++ b/src/Fantomas.Tests/ElmishTests.fs
@@ -1463,4 +1463,4 @@ ReactDom.render (
App() ],
root
)
-"""
\ No newline at end of file
+"""
diff --git a/src/Fantomas.Tests/Fantomas.Tests.fsproj b/src/Fantomas.Tests/Fantomas.Tests.fsproj
index b0d59db56a..65746a2c15 100644
--- a/src/Fantomas.Tests/Fantomas.Tests.fsproj
+++ b/src/Fantomas.Tests/Fantomas.Tests.fsproj
@@ -1,6 +1,6 @@
- 4.6.0
+ 4.6.1
FS0988
net5.0
FS0025
diff --git a/src/Fantomas/Fantomas.fsproj b/src/Fantomas/Fantomas.fsproj
index dce217519e..6db87ed2c5 100644
--- a/src/Fantomas/Fantomas.fsproj
+++ b/src/Fantomas/Fantomas.fsproj
@@ -2,7 +2,7 @@
netstandard2.0
- 4.6.0
+ 4.6.1
Source code formatter for F#
FS0025
LICENSE.md