diff --git a/CHANGELOG.md b/CHANGELOG.md index c906762..afee249 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ 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). ## [Unreleased] + +------------------------ + +## [0.9.1] - 2024-06-04 ### Added - blacklist with file `__folder_managed_by_vortex` to hide it and prevent access from `FileSystemStorage`. @@ -105,7 +109,8 @@ This version is not compatible with v0.2.0 and below, see the README and - read / write / stringify Json data. -[Unreleased]: https://github.com/rayshader/cp2077-red-filesystem/compare/v0.9.0...HEAD +[Unreleased]: https://github.com/rayshader/cp2077-red-filesystem/compare/v0.9.1...HEAD +[0.9.1]: https://github.com/rayshader/cp2077-red-filesystem/compare/v0.9.0...v0.9.1 [0.9.0]: https://github.com/rayshader/cp2077-red-filesystem/compare/v0.8.0...v0.9.0 [0.8.0]: https://github.com/rayshader/cp2077-red-filesystem/compare/v0.7.1...v0.8.0 [0.7.1]: https://github.com/rayshader/cp2077-red-filesystem/compare/v0.7.0...v0.7.1 diff --git a/CMakeLists.txt b/CMakeLists.txt index 5fd507d..4acf909 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.27) -project(RedFileSystem VERSION 0.9.0) +project(RedFileSystem VERSION 0.9.1) set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED YES) diff --git a/bundle.mjs b/bundle.mjs index a68f3eb..d050ab9 100644 --- a/bundle.mjs +++ b/bundle.mjs @@ -9,7 +9,7 @@ import * as fs from 'fs'; import archiver from 'archiver'; -const PLUGIN_VERSION = '0.9.0'; +const PLUGIN_VERSION = '0.9.1'; const PLUGIN_NAME = 'RedFileSystem'; const PLUGIN_LICENSE = 'LICENSE'; const PLUGIN_LIBRARY_PATH = `build/Release/${PLUGIN_NAME}.dll`;