diff --git a/CHANGELOG.md b/CHANGELOG.md index a6dcf6760..663134970 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.6.0] - 2024-03-05 + +### Fixed + +- Fix a bug that broke sockets on ESP32-C3 and other single core ESP32 devices, that may also +cause other issues. The bug has been introduced with messages from tasks change between beta.1 +and rc.0 + ## [0.6.0-rc.0] - 2024-03-03 ### Added diff --git a/version.cmake b/version.cmake index c3d4d6ebc..3cd6e2a0e 100644 --- a/version.cmake +++ b/version.cmake @@ -1,7 +1,7 @@ # # This file is part of AtomVM. # -# Copyright 2022 Davide Bettio +# Copyright 2022-2024 Davide Bettio # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -19,5 +19,5 @@ # # Please, keep also in sync src/libAtomVM/atomvm_version.h -set(ATOMVM_BASE_VERSION "0.6.0-rc.0") +set(ATOMVM_BASE_VERSION "0.6.0") set(ATOMVM_DEV FALSE)