v0.3.4
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 06b1280..7f3eedd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,11 +6,14 @@
 
 ## [Unreleased]
 
+## [0.3.4] - 2019-07-25
+### Added
+- When the AVIF container does not contain a color profile, fallback to the color OBU's nclx
+
 ## [0.3.3] - 2019-07-24
 ### Added
 - new helper function `avifPeekCompatibleFileType()`
 - expose ioStats on avifDecoder again (currently only interesting when reading items)
-- When the AVIF container does not contain a color profile, fallback to the color OBU's nclx
 
 ### Changed
 - Fixed some warnings (removed unused variables and a bad cast)
@@ -124,8 +127,9 @@
 - Constants `AVIF_VERSION`, `AVIF_VERSION_MAJOR`, `AVIF_VERSION_MINOR`, `AVIF_VERSION_PATCH`
 - `avifVersion()` function
 
-[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v0.3.3...HEAD
-[0.3.2]: https://github.com/AOMediaCodec/libavif/compare/v0.3.2...v0.3.3
+[Unreleased]: https://github.com/AOMediaCodec/libavif/compare/v0.3.4...HEAD
+[0.3.4]: https://github.com/AOMediaCodec/libavif/compare/v0.3.3...v0.3.4
+[0.3.3]: https://github.com/AOMediaCodec/libavif/compare/v0.3.2...v0.3.3
 [0.3.2]: https://github.com/AOMediaCodec/libavif/compare/v0.3.1...v0.3.2
 [0.3.1]: https://github.com/AOMediaCodec/libavif/compare/v0.3.0...v0.3.1
 [0.3.0]: https://github.com/AOMediaCodec/libavif/compare/v0.2.0...v0.3.0
diff --git a/include/avif/avif.h b/include/avif/avif.h
index 5ad4f67..8032009 100644
--- a/include/avif/avif.h
+++ b/include/avif/avif.h
@@ -16,7 +16,7 @@
 
 #define AVIF_VERSION_MAJOR 0
 #define AVIF_VERSION_MINOR 3
-#define AVIF_VERSION_PATCH 3
+#define AVIF_VERSION_PATCH 4
 #define AVIF_VERSION (AVIF_VERSION_MAJOR * 10000) + (AVIF_VERSION_MINOR * 100) + AVIF_VERSION_PATCH
 
 typedef int avifBool;