diff --git a/CHANGELOG.md b/CHANGELOG.md
index 33dbdb14fa..07b95c7343 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,156 @@
# Changelog
+## [3.16.1](https://github.com/ynput/OpenPype/tree/3.16.1)
+
+
+[Full Changelog](https://github.com/ynput/OpenPype/compare/3.16.0...3.16.1)
+
+### **๐ New features**
+
+
+
+Royal Render: Maya and Nuke support #5191
+
+Basic working implementation of Royal Render support in Maya.It expects New publisher implemented in Maya.
+
+
+___
+
+
+
+
+
+Blender: Blend File Family #4321
+
+Implementation of the Blend File family analogue to the Maya Scene one.
+
+
+___
+
+
+
+
+
+Houdini: simple bgeo publishing #4588
+
+Support for simple publishing of bgeo files.
+
+This is adding basic support for bgeo publishing in Houdini. It will allow publishing bgeo in all supported formats (selectable in the creator options). If selected node has `output` on sop level, it will be used automatically as path in file node.
+
+
+___
+
+
+
+### **๐ Enhancements**
+
+
+
+General: delivery action add renamed frame number in Loader #5024
+
+Frame Offset options for delivery in Openpype loader
+
+
+___
+
+
+
+
+
+Enhancement/houdini add path action for abc validator #5237
+
+Add a default path attribute Action.it's a helper action more than a repair action, which used to add a default single value.
+
+
+___
+
+
+
+
+
+Nuke: auto apply all settings after template build #5277
+
+Adding auto run of Apply All Settings after template is builder is finishing its process. This will apply Frame-range, Image size, Colorspace found in context of a task shot.
+
+
+___
+
+
+
+
+
+Harmony:Removed loader settings for Harmony #5289
+
+It shouldn't be configurable, it is internal logic. By adding additional extension it wouldn't start to work magically.
+
+
+___
+
+
+
+### **๐ Bug fixes**
+
+
+
+AYON: Make appdirs case sensitive #5298
+
+Appdirs for AYON are case sensitive for linux and mac so we needed to change them to match ayon launcher. Changed 'ayon' to 'AYON' and 'ynput' to 'Ynput'.
+
+
+___
+
+
+
+
+
+Traypublisher: Fix plugin order #5299
+
+Frame range collector for traypublisher was moved to traypublisher plugins and changed order to make sure `assetEntity` is filled in `instance.data`.
+
+
+___
+
+
+
+
+
+Deadline: removing OPENPYPE_VERSION from some host submitters #5302
+
+Removing deprecated method of adding OPENPYPE_VERSION to job environment. It was leftover and other hosts have already been cleared.
+
+
+___
+
+
+
+
+
+AYON: Fix args for workfile conversion util #5308
+
+Workfile update conversion util function have right expected arguments.
+
+
+___
+
+
+
+### **๐ Refactored code**
+
+
+
+Maya: Refactor imports to `lib.get_reference_node` since the other functionโฆ #5258
+
+Refactor imports to `lib.get_reference_node` since the other function is deprecated.
+
+
+___
+
+
+
+
+
+
## [3.16.0](https://github.com/ynput/OpenPype/tree/3.16.0)
diff --git a/openpype/version.py b/openpype/version.py
index 2d396e5d30..b2dfc857a3 100644
--- a/openpype/version.py
+++ b/openpype/version.py
@@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-
"""Package declaring Pype version."""
-__version__ = "3.16.0-nightly.2"
+__version__ = "3.16.1"
diff --git a/pyproject.toml b/pyproject.toml
index fe5477fb00..fb6e222f27 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "OpenPype"
-version = "3.16.0" # OpenPype
+version = "3.16.1" # OpenPype
description = "Open VFX and Animation pipeline with support."
authors = ["OpenPype Team "]
license = "MIT License"