v0.5.7
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 21da422..d5f2244 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.7] - 2020-03-03
 ### Added
 - libgav1 decode codec support. (wantehchang @Google)
 - Expose codec selection to avifdec/avifenc, speed to avifenc
@@ -309,7 +311,8 @@
 - Constants `AVIF_VERSION`, `AVIF_VERSION_MAJOR`, `AVIF_VERSION_MINOR`, `AVIF_VERSION_PATCH`
 - `avifVersion()` function
 
-[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v0.5.6...HEAD
+[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v0.5.7...HEAD
+[0.5.7]: https://github.com/AOMediaCodec/libavif/compare/v0.5.6...v0.5.7
 [0.5.6]: https://github.com/AOMediaCodec/libavif/compare/v0.5.5...v0.5.6
 [0.5.5]: https://github.com/AOMediaCodec/libavif/compare/v0.5.4...v0.5.5
 [0.5.4]: https://github.com/AOMediaCodec/libavif/compare/v0.5.3...v0.5.4
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 9e7879d..b781450 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -7,7 +7,7 @@
 # and find_package()
 list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules")
 
-project(libavif LANGUAGES C CXX VERSION 0.5.6)
+project(libavif LANGUAGES C CXX VERSION 0.5.7)
 
 # SOVERSION scheme: CURRENT.AGE.REVISION
 #   If there was an incompatible interface change:
@@ -16,7 +16,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.6")
+set(LIBRARY_VERSION "1.0.0")
 set(LIBRARY_SOVERSION "0")
 
 option(BUILD_SHARED_LIBS "Build shared avif library" ON)
diff --git a/include/avif/avif.h b/include/avif/avif.h
index 002d3a6..1cd2df3 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 6
+#define AVIF_VERSION_PATCH 7
 #define AVIF_VERSION (AVIF_VERSION_MAJOR * 10000) + (AVIF_VERSION_MINOR * 100) + AVIF_VERSION_PATCH
 
 typedef int avifBool;