Skip to content

Commit

Permalink
build: release v0.7.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
poirierlouis committed May 12, 2024
1 parent 093a0b7 commit 4822c1d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@ 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.7.1] - 2024-05-12
### Fixed
- issue when using files listed with method `GetFiles`.
- issue when using files listed with method `GetFiles`.

------------------------

Expand Down Expand Up @@ -70,7 +74,8 @@ This version is not compatible with v0.2.0 and below, see the README and
- read / write / stringify Json data.

<!-- Table of releases -->
[Unreleased]: https://github.com/rayshader/cp2077-red-filesystem/compare/v0.7.0...HEAD
[Unreleased]: https://github.com/rayshader/cp2077-red-filesystem/compare/v0.7.1...HEAD
[0.7.1]: https://github.com/rayshader/cp2077-red-filesystem/compare/v0.7.0...v0.7.1
[0.7.0]: https://github.com/rayshader/cp2077-red-filesystem/compare/v0.6.0...v0.7.0
[0.6.0]: https://github.com/rayshader/cp2077-red-filesystem/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/rayshader/cp2077-red-filesystem/compare/v0.4.0...v0.5.0
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.27)
project(RedFileSystem VERSION 0.7.0)
project(RedFileSystem VERSION 0.7.1)

set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED YES)
Expand Down
2 changes: 1 addition & 1 deletion bundle.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import * as fs from 'fs';
import archiver from 'archiver';

const PLUGIN_VERSION = '0.7.0';
const PLUGIN_VERSION = '0.7.1';
const PLUGIN_NAME = 'RedFileSystem';
const PLUGIN_LICENSE = 'LICENSE';
const PLUGIN_LIBRARY_PATH = `build/Release/${PLUGIN_NAME}.dll`;
Expand Down

0 comments on commit 4822c1d

Please sign in to comment.