Skip to content

Commit

Permalink
Change version to 1.12.0-a.0.z
Browse files Browse the repository at this point in the history
  • Loading branch information
helmesjo committed Nov 20, 2023
1 parent 5c9f7b7 commit c386a8e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion spdlog-bench/manifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
: 1
name: spdlog-bench
version: 1.11.0+1
version: 1.12.0-a.0.z
project: spdlog
summary: Benchmarks package for spdlog
topics: logging, C++
Expand Down
2 changes: 1 addition & 1 deletion spdlog-tests/manifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
: 1
name: spdlog-tests
version: 1.11.0+1
version: 1.12.0-a.0.z
project: spdlog
summary: Tests package for spdlog
topics: logging, C++
Expand Down
2 changes: 1 addition & 1 deletion spdlog/manifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
: 1
name: spdlog
version: 1.11.0+1
version: 1.12.0-a.0.z
project: spdlog
summary: Fast C++ logging library.
license: MIT ; MIT License
Expand Down
2 changes: 1 addition & 1 deletion upstream
Submodule upstream updated 73 files
+2 −3 .github/workflows/ci.yml
+2 −0 .gitignore
+34 −23 CMakeLists.txt
+1 −1 INSTALL
+79 −42 README.md
+3 −39 appveyor.yml
+2 −2 bench/CMakeLists.txt
+1 −1 bench/bench.cpp
+17 −4 bench/latency.cpp
+1 −1 example/CMakeLists.txt
+20 −2 example/example.cpp
+3 −3 include/spdlog/async.h
+16 −18 include/spdlog/async_logger-inl.h
+65 −6 include/spdlog/common.h
+6 −0 include/spdlog/details/backtracer-inl.h
+1 −0 include/spdlog/details/backtracer.h
+8 −0 include/spdlog/details/file_helper-inl.h
+1 −0 include/spdlog/details/file_helper.h
+0 −5 include/spdlog/details/fmt_helper.h
+24 −2 include/spdlog/details/mpmc_blocking_q.h
+41 −12 include/spdlog/details/os-inl.h
+4 −0 include/spdlog/details/os.h
+10 −1 include/spdlog/details/registry-inl.h
+2 −0 include/spdlog/details/registry.h
+1 −1 include/spdlog/details/synchronous_factory.h
+1 −1 include/spdlog/details/tcp_client-windows.h
+3 −2 include/spdlog/details/tcp_client.h
+1 −5 include/spdlog/details/thread_pool-inl.h
+6 −4 include/spdlog/details/udp_client-windows.h
+1 −1 include/spdlog/details/udp_client.h
+3 −3 include/spdlog/fmt/bin_to_hex.h
+171 −0 include/spdlog/fmt/bundled/std.h
+23 −0 include/spdlog/fmt/std.h
+3 −3 include/spdlog/logger-inl.h
+23 −49 include/spdlog/logger.h
+1 −1 include/spdlog/pattern_formatter.h
+6 −2 include/spdlog/sinks/android_sink.h
+9 −9 include/spdlog/sinks/ansicolor_sink-inl.h
+61 −0 include/spdlog/sinks/callback_sink.h
+8 −58 include/spdlog/sinks/daily_file_sink.h
+4 −4 include/spdlog/sinks/dist_sink.h
+5 −3 include/spdlog/sinks/dup_filter_sink.h
+133 −0 include/spdlog/sinks/kafka_sink.h
+18 −6 include/spdlog/sinks/msvc_sink.h
+196 −6 include/spdlog/sinks/qt_sinks.h
+1 −1 include/spdlog/sinks/ringbuffer_sink.h
+1 −2 include/spdlog/sinks/stdout_sinks-inl.h
+7 −0 include/spdlog/sinks/systemd_sink.h
+6 −6 include/spdlog/sinks/win_eventlog_sink.h
+5 −0 include/spdlog/spdlog-inl.h
+26 −17 include/spdlog/spdlog.h
+1 −1 include/spdlog/stopwatch.h
+1 −2 include/spdlog/tweakme.h
+1 −1 include/spdlog/version.h
+16 −0 tests/CMakeLists.txt
+0 −17,959 tests/catch.hpp
+0 −23 tests/catch.license
+2 −1 tests/includes.h
+1 −2 tests/main.cpp
+9 −1 tests/test_async.cpp
+13 −0 tests/test_backtrace.cpp
+93 −0 tests/test_bin_to_hex.cpp
+34 −0 tests/test_custom_callbacks.cpp
+5 −5 tests/test_daily_logger.cpp
+12 −9 tests/test_errors.cpp
+5 −5 tests/test_file_helper.cpp
+5 −5 tests/test_file_logging.cpp
+1 −1 tests/test_fmt_helper.cpp
+1 −1 tests/test_macros.cpp
+0 −91 tests/test_misc.cpp
+22 −2 tests/test_mpmc_q.cpp
+2 −2 tests/test_pattern_formatter.cpp
+3 −3 tests/test_stopwatch.cpp

0 comments on commit c386a8e

Please sign in to comment.