Skip to content

Commit 5662910

Browse files
committed
build: release v0.4.0
Support patch 2.13
1 parent 7a1594f commit 5662910

File tree

4 files changed

+18
-11
lines changed

4 files changed

+18
-11
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
------------------------
1010

11+
## [0.4.0] - 2024-09-13
12+
### Changed
13+
- support patch 2.13
14+
15+
------------------------
16+
1117
## [0.3.4] - 2024-07-14
1218
### Fixed
1319
- `RedData.Json` is now optional when installing `RedHttpClient`.
@@ -62,7 +68,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6268
- AsyncHttpClient to asynchronously send HTTP requests (callback mode).
6369

6470
<!-- Table of releases -->
65-
[Unreleased]: https://github.com/rayshader/cp2077-red-httpclient/compare/v0.3.4...HEAD
71+
[Unreleased]: https://github.com/rayshader/cp2077-red-httpclient/compare/v0.4.0...HEAD
72+
[0.4.0]: https://github.com/rayshader/cp2077-red-httpclient/compare/v0.3.4...v0.4.0
6673
[0.3.4]: https://github.com/rayshader/cp2077-red-httpclient/compare/v0.3.3...v0.3.4
6774
[0.3.3]: https://github.com/rayshader/cp2077-red-httpclient/compare/v0.3.2...v0.3.3
6875
[0.3.2]: https://github.com/rayshader/cp2077-red-httpclient/compare/v0.3.1...v0.3.2

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.27)
2-
project(RedHttpClient VERSION 0.3.4)
2+
project(RedHttpClient VERSION 0.4.0)
33

44
set(CMAKE_CXX_STANDARD 20)
55
set(CMAKE_CXX_STANDARD_REQUIRED YES)

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Red Http Client
2-
![Cyberpunk 2077](https://img.shields.io/badge/Cyberpunk%202077-v2.12a-blue)
2+
![Cyberpunk 2077](https://img.shields.io/badge/Cyberpunk%202077-v2.13-blue)
33
![GitHub License](https://img.shields.io/github/license/rayshader/cp2077-red-httpclient)
44
[![Donate](https://img.shields.io/badge/donate-buy%20me%20a%20coffee-yellow)](https://www.buymeacoffee.com/lpfreelance)
55

@@ -9,15 +9,15 @@ CET.
99
# Getting started
1010

1111
## Compatibility
12-
- Cyberpunk 2077 v2.12a
13-
- [Redscript] 0.5.25+
14-
- [Cyber Engine Tweaks] 1.32.2+
12+
- Cyberpunk 2077 v2.13
13+
- [Redscript] 0.5.27+
14+
- [Cyber Engine Tweaks] 1.33.0+
1515

1616
## Installation
1717
1. Install requirements:
18-
- [RED4ext] v1.25.0+
19-
- [RedData] v0.4.0+ (only required for Json data)
20-
- [RedFileSystem] v0.9.0+ (recommended)
18+
- [RED4ext] v1.25.1+
19+
- [RedData] v0.5.0+ (only required for Json data)
20+
- [RedFileSystem] v0.10.0+ (recommended)
2121
2. Extract the [latest archive] into the Cyberpunk 2077 directory.
2222

2323
## Usage
@@ -263,7 +263,7 @@ Contributions are welcome, feel free to fill an issue or a PR.
263263
1. Install requirements:
264264
- CMake v3.27+
265265
- Visual Studio Community 2022+
266-
- [red-cli] v0.2.0+
266+
- [red-cli] v0.2.2+
267267
2. Configure project with:
268268
```shell
269269
cmake -G "Visual Studio 17 2022" -A x64 -DBUILD_SHARED_LIBS:BOOL=OFF -S . -B build

red.config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "RedHttpClient",
3-
"version": "0.3.4",
3+
"version": "0.4.0",
44
"license": true,
55
"dist": "dist\\",
66
"scripts": {

0 commit comments

Comments
 (0)