From 929463156499afd76e290b87031f4d47a262ac27 Mon Sep 17 00:00:00 2001 From: Louis Poirier Date: Sat, 27 Apr 2024 22:32:18 +0200 Subject: [PATCH] build: release v0.3.1. --- CHANGELOG.md | 3 ++- CMakeLists.txt | 2 +- bundle.mjs | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b9cae1..c222994 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,7 +36,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - AsyncHttpClient to asynchronously send HTTP requests (callback mode). -[Unreleased]: https://github.com/rayshader/cp2077-red-httpclient/compare/v0.3.0...HEAD +[Unreleased]: https://github.com/rayshader/cp2077-red-httpclient/compare/v0.3.1...HEAD +[0.3.1]: https://github.com/rayshader/cp2077-red-httpclient/compare/v0.3.0...v0.3.1 [0.3.0]: https://github.com/rayshader/cp2077-red-httpclient/compare/v0.2.0...v0.3.0 [0.2.0]: https://github.com/rayshader/cp2077-red-httpclient/compare/v0.1.0...v0.2.0 [0.1.0]: https://github.com/rayshader/cp2077-red-httpclient/releases/tag/v0.1.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index 10cdedd..ac6f2a3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.27) -project(RedHttpClient VERSION 0.3.0) +project(RedHttpClient VERSION 0.3.1) set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED YES) diff --git a/bundle.mjs b/bundle.mjs index 637f406..a188f3c 100644 --- a/bundle.mjs +++ b/bundle.mjs @@ -9,7 +9,7 @@ import * as fs from 'fs'; import archiver from 'archiver'; -const PLUGIN_VERSION = '0.3.0'; +const PLUGIN_VERSION = '0.3.1'; const PLUGIN_NAME = 'RedHttpClient'; const PLUGIN_LICENSE = 'LICENSE'; const PLUGIN_LIBRARY_PATH = `build/Release/${PLUGIN_NAME}.dll`;