Skip to content

Commit 10e53f6

Browse files
Merge pull request #39 from lucaromagnoli/release/v1.0.21
chore: bump version to 1.0.21 and update changelog
2 parents f3888d0 + 335321d commit 10e53f6

File tree

5 files changed

+16
-6
lines changed

5 files changed

+16
-6
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ name: CI
22

33
on:
44
push:
5-
branches: [ main, develop, 'feat/**', 'fix/**', 'feature/**', 'bugfix/**' ]
65
paths-ignore: # Skip CI for documentation changes
76
- '**.md'
87
- 'docs/**'

.github/workflows/release.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@ name: Release
22

33
on:
44
push:
5-
tags:
6-
- 'v*.*.*' # Triggers on semantic version tags like v1.0.0, v2.1.3
75
branches:
8-
- main # Trigger when release branches are merged to main
6+
- main # Trigger only when release branches are merged to main
97

108
env:
119
CMAKE_VERSION: '3.22'

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
## [Unreleased] - Unreleased
44

5+
6+
7+
## [1.0.21] - 2025-08-07
8+
9+
### Fixed
10+
- Windows compilation error with std::unique_ptr<void>
11+
- remove pull_request triggers to avoid duplicate CI jobs
12+
- replace std::unique_ptr<void> with proper httplib::Client
13+
- add Windows dependencies and configure httplib properly
14+
15+
### Other
16+
- Merge pull request #38 from lucaromagnoli/fix/windows-unique-ptr
17+
518
## [1.0.20] - 2025-08-06
619

720
### Fixed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.22)
22

3-
project(llmcpp VERSION 1.0.19 LANGUAGES CXX)
3+
project(llmcpp VERSION 1.0.21 LANGUAGES CXX)
44

55
# Set version variables for easier access
66
set(LLMCPP_VERSION_MAJOR ${PROJECT_VERSION_MAJOR})

vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "llmcpp",
3-
"version": "1.0.19",
3+
"version": "1.0.21",
44
"dependencies": [
55
"openssl",
66
"nlohmann-json"

0 commit comments

Comments
 (0)