diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4566d9f9b..bc37a94b0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,8 @@ All notable changes to TTT2 will be documented here. Inspired by [keep a changel
## Unreleased
+## [v0.13.2b](https://github.com/TTT-2/TTT2/tree/0.13.2b) (2024-03-10)
+
### Added
- Added upstream content files to base TTT2
diff --git a/gamemodes/terrortown/gamemode/client/cl_changes.lua b/gamemodes/terrortown/gamemode/client/cl_changes.lua
index f3bf934ed..f01dd18b0 100644
--- a/gamemodes/terrortown/gamemode/client/cl_changes.lua
+++ b/gamemodes/terrortown/gamemode/client/cl_changes.lua
@@ -2024,6 +2024,36 @@ function CreateChanges()
os.time({ year = 2024, month = 02, day = 27 })
)
+ AddChange(
+ "TTT2 Base - v0.13.2b",
+ [[
+
Added
+
+ - Added upstream content files to base TTT2
+ - Added
plymeta:IsFullySignedOn()
to allow excluding players that have not gotten control yet (by @EntranceJew)
+
+ Changed
+
+ - Crosshair rendering now is a bit more flexible and customizable
+ - A crosshair is now also drawn when holding a nade, making it less confusing when looking at entities
+ - Hides item settings in the equipment editor that are only relevant for weapons
+ - The binoculars now use the default crosshair as well
+
+ Fixed
+
+ - Fixed the AFK timer accumulating while player not fully joined (by @EntranceJew)
+ - Fixed weapons which set a custom view model texture having an error texture
+ - Fixed the equipment menu throwing errors when clicking on some items
+ - TTT2 now ignores Gmods SWEP.DrawCrosshair and always draws just its own crosshair to prevent two crosshairs at once
+ - Fixed hud help text not being shown for some old weapons
+ - Fixed detective search being overwritten by player search results
+
+ ]],
+ os.time({ year = 2024, month = 03, day = 10 })
+ )
+
+ --#endofchanges
+
---
-- run hook for other addons to add their changelog as well
-- @realm client
diff --git a/gamemodes/terrortown/gamemode/shared/sh_init.lua b/gamemodes/terrortown/gamemode/shared/sh_init.lua
index a7e6aef32..a2d07ffb7 100644
--- a/gamemodes/terrortown/gamemode/shared/sh_init.lua
+++ b/gamemodes/terrortown/gamemode/shared/sh_init.lua
@@ -5,7 +5,7 @@ GM.Name = "TTT2"
GM.Author = "Bad King Urgrain, Alf21, saibotk, Mineotopia, LeBroomer, Histalek, ZenBre4ker"
GM.Email = "ttt2@neoxult.de"
GM.Website = "ttt.badking.net, docs.ttt2.neoxult.de"
-GM.Version = "0.13.1b"
+GM.Version = "0.13.2b"
GM.Customized = true
TTT2 = true -- identifier for TTT2. Just use "if TTT2 then ... end"