Skip to content

Commit

Permalink
fix pkg-config file
Browse files Browse the repository at this point in the history
  • Loading branch information
odygrd committed Aug 12, 2024
1 parent fa64370 commit ee47939
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
- [v6.1.1](#v611)
- [v6.1.0](#v610)
- [v6.0.0](#v600)
- [v5.1.0](#v510)
Expand Down Expand Up @@ -70,6 +71,10 @@
- [v1.1.0](#v110)
- [v1.0.0](#v100)

## v6.1.1

- Fix pkg-config file

## v6.1.0

- Fix various compiler warnings
Expand Down
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module(
name = "quill",
version = "6.1.0",
version = "6.1.1",
compatibility_level = 1,
)

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def configureDoxyfile(input_dir, output_dir):
project = 'Quill'
copyright = '2024, Odysseas Georgoudis'
author = 'Odysseas Georgoudis'
release = 'v6.1.0'
release = 'v6.1.1'

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project('quill', 'cpp', version : '6.1.0', default_options : ['warning_level=3', 'cpp_std=c++17'])
project('quill', 'cpp', version : '6.1.1', default_options : ['warning_level=3', 'cpp_std=c++17'])

inc_dirs = include_directories('quill/include')

Expand Down
3 changes: 1 addition & 2 deletions quill/cmake/quill.pc.in
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
libdir=@CMAKE_INSTALL_FULL_LIBDIR@
includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@

Name: quill
Description: Low Latency C++ Logging Library
URL: https://github.com/odygrd/quill
Version: @QUILL_VERSION@
CFlags: -I${includedir}
Libs: -L${libdir} -lquill -lpthread
Libs: -lpthread
Requires: @PKG_CONFIG_REQUIRES@
2 changes: 1 addition & 1 deletion quill/include/quill/Backend.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ QUILL_BEGIN_NAMESPACE
/** Version Info **/
constexpr uint32_t VersionMajor{6};
constexpr uint32_t VersionMinor{1};
constexpr uint32_t VersionPatch{0};
constexpr uint32_t VersionPatch{1};
constexpr uint32_t Version{VersionMajor * 10000 + VersionMinor * 100 + VersionPatch};

class Backend
Expand Down

0 comments on commit ee47939

Please sign in to comment.