Skip to content

Commit 21839c4

Browse files
committed
Version bump for adjustments for vcpkg integration
1 parent 4d56ada commit 21839c4

7 files changed

Lines changed: 13 additions & 6 deletions

File tree

.github/workflows/create-release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ jobs:
177177
- name: Create GitHub Release and Upload Artifact
178178
uses: softprops/action-gh-release@v2
179179
with:
180+
prerelease: true
180181
files: ./release-artifacts/**
181182
env:
182183
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [v7.0.2] - February 22, 2026
9+
10+
### Added
11+
12+
- vcpkg support
13+
814
## [v7.0.1] - February 22, 2026
915

1016
### Fixed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ endforeach()
5555
set(ULOG_BUILD_INCLUDE_DIR ${CMAKE_CURRENT_LIST_DIR}/include)
5656
set(ULOG_BUILD_SRC_DIR ${CMAKE_CURRENT_LIST_DIR}/src)
5757
set(ULOG_INSTALL_INCLUDE_DIR .)
58-
set(ULOG_INSTALL_SRC_DIR src)
58+
set(ULOG_INSTALL_SRC_DIR share/${PROJECT_NAME}/src)
5959

6060
add_library(${PROJECT_NAME} INTERFACE)
6161
add_library(${PROJECT_NAME}::${PROJECT_NAME} ALIAS ${PROJECT_NAME})

cmake/micrologTargets.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_DIR}" ABSOLUTE)
6767
if(NOT TARGET microlog)
6868
add_library(microlog STATIC)
6969

70-
target_sources(microlog PRIVATE "${PACKAGE_PREFIX_DIR}/src/ulog.c" )
70+
target_sources(microlog PRIVATE "${PACKAGE_PREFIX_DIR}/share/microlog/src/ulog.c" )
7171
target_include_directories(microlog PUBLIC "${PACKAGE_PREFIX_DIR}/include" )
7272

7373
add_library(microlog::microlog ALIAS microlog)

ports/microlog/vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "microlog",
3-
"version": "7.0.1",
3+
"version": "7.0.2",
44
"description": "Extensible and configurable logging library for embedded and desktop applications with multi-output and logging topics",
55
"homepage": "https://github.com/an-dr/microlog",
66
"license": "MIT",

scripts/publish_vcpkg_port.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
Requires vcpkg to be bootstrapped (vcpkg.exe must exist in $VcpkgPath).
1212
1313
.PARAMETER Tag
14-
The git tag to publish (e.g. "v7.0.1").
14+
The git tag to publish (e.g. "v7.0.2").
1515
Defaults to the version in the version file.
1616
1717
.PARAMETER VcpkgPath
@@ -20,7 +20,7 @@
2020
2121
.EXAMPLE
2222
.\scripts\publish_vcpkg_port.ps1
23-
.\scripts\publish_vcpkg_port.ps1 -Tag v7.0.1
23+
.\scripts\publish_vcpkg_port.ps1 -Tag v7.0.2
2424
.\scripts\publish_vcpkg_port.ps1 -VcpkgPath C:\src\vcpkg
2525
#>
2626

version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.0.1
1+
7.0.2

0 commit comments

Comments
 (0)