chore: update version to 1.3.0

This commit is contained in:
Petra Baranski
2023-08-26 13:28:28 +02:00
parent 4722932068
commit 65730beffa
4 changed files with 9 additions and 5 deletions

View File

@@ -37,7 +37,9 @@ body:
label: maddy version label: maddy version
description: What version of maddy are you using? description: What version of maddy are you using?
options: options:
- 1.2.0 (latest) - 1.3.0 (latest)
- 1.2.1
- 1.2.0
- 1.1.2 - 1.1.2
- 1.1.1 - 1.1.1
- 1.1.0 - 1.1.0

View File

@@ -37,7 +37,9 @@ body:
label: maddy version label: maddy version
description: What version of maddy are you using? description: What version of maddy are you using?
options: options:
- 1.2.0 (latest) - 1.3.0 (latest)
- 1.2.1
- 1.2.0
- 1.1.2 - 1.1.2
- 1.1.1 - 1.1.1
- 1.1.0 - 1.1.0
@@ -51,7 +53,7 @@ body:
id: example id: example
attributes: attributes:
label: Minimal Mardown example label: Minimal Mardown example
description: To be able to reproduce your issue, please give some example Markdown which creates problems. description: To be able to reproduce your issue, please give some example Markdown which creates problems. Please indent the Markdown by 4 spaces.
validations: validations:
required: true required: true
- type: textarea - type: textarea

View File

@@ -1,7 +1,7 @@
# maddy # maddy
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Version: 1.2.1](https://img.shields.io/badge/Version-1.2.1-brightgreen.svg)](https://semver.org/) [![Version: 1.3.0](https://img.shields.io/badge/Version-1.3.0-brightgreen.svg)](https://semver.org/)
maddy is a C++ Markdown to HTML **header-only** parser library. maddy is a C++ Markdown to HTML **header-only** parser library.

View File

@@ -57,7 +57,7 @@ public:
* Check https://github.com/progsource/maddy/blob/master/CHANGELOG.md * Check https://github.com/progsource/maddy/blob/master/CHANGELOG.md
* for the changelog. * for the changelog.
*/ */
static const std::string& version() { static const std::string v = "1.2.1"; return v; } static const std::string& version() { static const std::string v = "1.3.0"; return v; }
/** /**
* ctor * ctor