v0.5.2
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 72708cb..0ef2868 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,8 @@
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
 ## [Unreleased]
+
+## [0.5.2] - 2019-11-23
 ### Changed
 - Fix incorrect free in 0-case for `avifRWDataSet()`
 
@@ -259,7 +261,8 @@
 - Constants `AVIF_VERSION`, `AVIF_VERSION_MAJOR`, `AVIF_VERSION_MINOR`, `AVIF_VERSION_PATCH`
 - `avifVersion()` function
 
-[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v0.5.1...HEAD
+[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v0.5.2...HEAD
+[0.5.2]: https://github.com/AOMediaCodec/libavif/compare/v0.5.1...v0.5.2
 [0.5.1]: https://github.com/AOMediaCodec/libavif/compare/v0.5.0...v0.5.1
 [0.5.0]: https://github.com/AOMediaCodec/libavif/compare/v0.4.8...v0.5.0
 [0.4.8]: https://github.com/AOMediaCodec/libavif/compare/v0.4.7...v0.4.8
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c9810c8..bc93bbb 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -2,7 +2,7 @@
 # SPDX-License-Identifier: BSD-2-Clause
 
 cmake_minimum_required(VERSION 3.5)
-project(libavif LANGUAGES C VERSION 0.5.1)
+project(libavif LANGUAGES C VERSION 0.5.2)
 
 # SOVERSION scheme: CURRENT.AGE.REVISION
 #   If there was an incompatible interface change:
@@ -11,7 +11,7 @@
 #     Increment AGE. Set REVISION to 0
 #   If the source code was changed, but there were no interface changes:
 #     Increment REVISION.
-set(LIBRARY_VERSION "0.1.1")
+set(LIBRARY_VERSION "0.1.2")
 set(LIBRARY_SOVERSION "0")
 
 if(CMAKE_C_COMPILER_ID MATCHES "GNU")
diff --git a/include/avif/avif.h b/include/avif/avif.h
index 4885ee4..ca99c33 100644
--- a/include/avif/avif.h
+++ b/include/avif/avif.h
@@ -16,7 +16,7 @@
 
 #define AVIF_VERSION_MAJOR 0
 #define AVIF_VERSION_MINOR 5
-#define AVIF_VERSION_PATCH 1
+#define AVIF_VERSION_PATCH 2
 #define AVIF_VERSION (AVIF_VERSION_MAJOR * 10000) + (AVIF_VERSION_MINOR * 100) + AVIF_VERSION_PATCH
 
 typedef int avifBool;