diff --git a/docs/source/release_notes/release_notes.rst b/docs/source/release_notes/release_notes.rst
index aeeb9ebc..5a244c86 100644
--- a/docs/source/release_notes/release_notes.rst
+++ b/docs/source/release_notes/release_notes.rst
@@ -5,6 +5,7 @@ Release Notes
.. toctree::
:maxdepth: 1
+ release_notes_1.33.1
release_notes_1.33
release_notes_1.32.1
release_notes_1.32
diff --git a/docs/source/release_notes/release_notes_1.33.1.rst b/docs/source/release_notes/release_notes_1.33.1.rst
new file mode 100644
index 00000000..d9cb50bc
--- /dev/null
+++ b/docs/source/release_notes/release_notes_1.33.1.rst
@@ -0,0 +1,73 @@
+
+Koji 1.33.1 Release notes
+=========================
+
+All changes can be found in `the roadmap `_.
+Most important changes are listed here.
+
+
+Migrating from Koji 1.33
+------------------------
+
+No special actions are needed.
+
+Security Fixes
+--------------
+
+None
+
+Client Changes
+--------------
+
+**Streamline python/json options in call command**
+
+| PR: https://pagure.io/koji/pull-request/3846
+
+Better JSON/python support in CLI ``call`` command.
+
+System Changes
+--------------
+**Wait with writing timestamps after results dir is created**
+
+| PR: https://pagure.io/koji/pull-request/3834
+
+In some cases using ``log_timestamps`` option on builder resulted in traceback
+as results directory hasn't existed yet.
+
+**Add support for sw_64 and loongarch64**
+
+| PR: https://pagure.io/koji/pull-request/3836
+
+Support for these architectures in ``distrepo``.
+
+WWW
+---
+**Fix duplicate build link on CG taskinfo page**
+
+| PR: https://pagure.io/koji/pull-request/3857
+
+As there is historically more places where CG can store build link in task, web
+page could have displayed duplicit links.
+
+VM
+--
+**Drop stray typing hint**
+
+| PR: https://pagure.io/koji/pull-request/3864
+
+Typo (py3 typing hint) which prevents python2 version of kojivmd from running.
+
+
+Documentation
+-------------
+**Basic vim syntax highlighting for hub policy**
+
+| PR: https://pagure.io/koji/pull-request/3839
+
+Simple syntax highlighting file for koji policies. It makes mistakes a bit more
+visible. Nevertheless, policy syntax doesn't have strict grammar, so don't rely
+only on this.
+
+**readTaggedRPMS/Builds API documentation**
+
+| PR: https://pagure.io/koji/pull-request/3840
diff --git a/koji.spec b/koji.spec
index b0be4f0f..2b0db5aa 100644
--- a/koji.spec
+++ b/koji.spec
@@ -83,7 +83,7 @@
%define release %{baserelease}
%endif
Name: koji
-Version: 1.33.0
+Version: 1.33.1
Release: %{release}%{?dist}
License: LGPL-2.1-only and GPL-2.0-or-later
# the included arch lib from yum's rpmUtils is GPLv2+
@@ -648,6 +648,15 @@ rm -rf $RPM_BUILD_ROOT
%endif
%changelog
+* Tue Jul 11 2023 Tomas Kopecek - 1.33.1-1
+- PR#3834: wait with writing timestamps after results dir is created
+- PR#3836: add support for sw_64 and loongarch64
+- PR#3839: basic vim syntax highlighting for hub policy
+- PR#3840: doc: readTaggedRPMS/Builds API documentation
+- PR#3846: cli: streamline python/json options in call command
+- PR#3857: Fix duplicate build link on CG taskinfo page
+- PR#3864: drop stray typing hint
+
* Tue May 16 2023 Tomas Kopecek - 1.33.0-1
- PR#3775: Import koji archive types
- PR#3816: kiwi: remove tech-preview warning
diff --git a/koji/_version.py b/koji/_version.py
index 23c9cf05..66918541 100644
--- a/koji/_version.py
+++ b/koji/_version.py
@@ -1,2 +1,2 @@
-__version_info__ = (1, 33, 0)
+__version_info__ = (1, 33, 1)
__version__ = '.'.join([str(x) for x in __version_info__])