Skip to content

Commit

Permalink
update CHANGELOG.md and version
Browse files Browse the repository at this point in the history
  • Loading branch information
odygrd committed Dec 1, 2023
1 parent e4826be commit 95f5804
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
- [v3.5.1](#v351)
- [v3.5.0](#v350)
- [v3.4.1](#v341)
- [v3.4.0](#v340)
Expand Down Expand Up @@ -53,6 +54,10 @@
- [v1.1.0](#v110)
- [v1.0.0](#v100)

## v3.5.1

- Fix for accessing `name()` method of the `Logger` class. ([#378](https://github.com/odygrd/quill/pull/378))

## v3.5.0

- Fixed `LOG_TRACE_CFORMAT` macros.
Expand Down
2 changes: 1 addition & 1 deletion quill/include/quill/Quill.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ namespace quill
/** Version Info **/
constexpr uint32_t VersionMajor{3};
constexpr uint32_t VersionMinor{5};
constexpr uint32_t VersionPatch{0};
constexpr uint32_t VersionPatch{1};
constexpr uint32_t Version{VersionMajor * 10000 + VersionMinor * 100 + VersionPatch};

/** forward declarations **/
Expand Down

0 comments on commit 95f5804

Please sign in to comment.