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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ maddy uses [semver versioning](https://semver.org/).

## Upcoming

* ...

## version 1.6.0 2025-07-26

* ![**ADDED**](https://img.shields.io/badge/-ADDED-%23099) Added CMake install and find_package() support.
* ![**ADDED**](https://img.shields.io/badge/-ADDED-%23099) Script to update maddy version number in all files.

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

cmake_minimum_required(VERSION 3.25)

project(maddy VERSION 1.5.0) # MADDY_VERSION_LINE_REPLACEMENT
project(maddy VERSION 1.6.0) # MADDY_VERSION_LINE_REPLACEMENT

# ------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# maddy

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Version: 1.5.0](https://img.shields.io/badge/Version-1.5.0-brightgreen.svg)](https://semver.org/) <!-- MADDY_VERSION_LINE_REPLACEMENT -->
[![Version: 1.6.0](https://img.shields.io/badge/Version-1.6.0-brightgreen.svg)](https://semver.org/) <!-- MADDY_VERSION_LINE_REPLACEMENT -->

maddy is a C++ Markdown to HTML **header-only** parser library.

Expand Down
2 changes: 1 addition & 1 deletion include/maddy/parser.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class Parser
*/
static const std::string& version()
{
static const std::string v = "1.5.0"; // MADDY_VERSION_LINE_REPLACEMENT
static const std::string v = "1.6.0"; // MADDY_VERSION_LINE_REPLACEMENT
return v;
}

Expand Down
Loading