Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ jobs:
- name: Create GitHub Release and Upload Artifact
uses: softprops/action-gh-release@v2
with:
prerelease: true
files: ./release-artifacts/**
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v7.0.2] - February 22, 2026

### Added

- vcpkg support

## [v7.0.1] - February 22, 2026

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ endforeach()
set(ULOG_BUILD_INCLUDE_DIR ${CMAKE_CURRENT_LIST_DIR}/include)
set(ULOG_BUILD_SRC_DIR ${CMAKE_CURRENT_LIST_DIR}/src)
set(ULOG_INSTALL_INCLUDE_DIR .)
set(ULOG_INSTALL_SRC_DIR src)
set(ULOG_INSTALL_SRC_DIR share/${PROJECT_NAME}/src)

add_library(${PROJECT_NAME} INTERFACE)
add_library(${PROJECT_NAME}::${PROJECT_NAME} ALIAS ${PROJECT_NAME})
Expand Down
2 changes: 1 addition & 1 deletion cmake/micrologTargets.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_DIR}" ABSOLUTE)
if(NOT TARGET microlog)
add_library(microlog STATIC)

target_sources(microlog PRIVATE "${PACKAGE_PREFIX_DIR}/src/ulog.c" )
target_sources(microlog PRIVATE "${PACKAGE_PREFIX_DIR}/share/microlog/src/ulog.c" )
target_include_directories(microlog PUBLIC "${PACKAGE_PREFIX_DIR}/include" )

add_library(microlog::microlog ALIAS microlog)
Expand Down
2 changes: 1 addition & 1 deletion ports/microlog/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "microlog",
"version": "7.0.1",
"version": "7.0.2",
"description": "Extensible and configurable logging library for embedded and desktop applications with multi-output and logging topics",
"homepage": "https://github.com/an-dr/microlog",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions scripts/publish_vcpkg_port.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
Requires vcpkg to be bootstrapped (vcpkg.exe must exist in $VcpkgPath).

.PARAMETER Tag
The git tag to publish (e.g. "v7.0.1").
The git tag to publish (e.g. "v7.0.2").
Defaults to the version in the version file.

.PARAMETER VcpkgPath
Expand All @@ -20,7 +20,7 @@

.EXAMPLE
.\scripts\publish_vcpkg_port.ps1
.\scripts\publish_vcpkg_port.ps1 -Tag v7.0.1
.\scripts\publish_vcpkg_port.ps1 -Tag v7.0.2
.\scripts\publish_vcpkg_port.ps1 -VcpkgPath C:\src\vcpkg
#>

Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.0.1
7.0.2