Skip to content

Commit

Permalink
update changelog (#199)
Browse files Browse the repository at this point in the history
Update CHANGELOG
  • Loading branch information
odygrd authored Oct 27, 2022
1 parent 1331706 commit 6a03657
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
- [v2.3.2](#v2.3.2)
- [v2.3.1](#v2.3.1)
- [v2.3.0](#v2.3.0)
- [v2.2.0](#v2.2.0)
Expand Down Expand Up @@ -29,6 +30,12 @@
- [v1.1.0](#v1.1.0)
- [v1.0.0](#v1.0.0)

## v2.3.2

**Fixes**

- Fix code not compiling with treat warnings as errors set on Windows. ([#198](https://github.com/odygrd/quill/pull/198))

## v2.3.1

**Fixes**
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 @@ -29,7 +29,7 @@ namespace quill
/** Version Info **/
constexpr uint32_t VersionMajor{2};
constexpr uint32_t VersionMinor{3};
constexpr uint32_t VersionPatch{1};
constexpr uint32_t VersionPatch{2};
constexpr uint32_t Version{VersionMajor * 10000 + VersionMinor * 100 + VersionPatch};

/** forward declarations **/
Expand Down

0 comments on commit 6a03657

Please sign in to comment.