mirror of
https://github.com/progsource/maddy.git
synced 2026-03-25 16:00:39 +01:00
Compare commits
7 Commits
de67274233
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4dcdbb50be | ||
|
|
07dde0c630 | ||
|
|
b2694f263d | ||
|
|
5f1f962e22 | ||
|
|
db875f74b8 | ||
|
|
441ba25550 | ||
|
|
9143754a23 |
3
.github/ISSUE_TEMPLATE/cpp-bug-report.yml
vendored
3
.github/ISSUE_TEMPLATE/cpp-bug-report.yml
vendored
@@ -37,7 +37,8 @@ body:
|
||||
label: maddy version
|
||||
description: What version of maddy are you using?
|
||||
options:
|
||||
- 1.5.0 (latest)
|
||||
- 1.6.0 (latest)
|
||||
- 1.5.0
|
||||
- 1.4.0
|
||||
- 1.3.0
|
||||
- 1.2.1
|
||||
|
||||
@@ -37,7 +37,8 @@ body:
|
||||
label: maddy version
|
||||
description: What version of maddy are you using?
|
||||
options:
|
||||
- 1.5.0 (latest)
|
||||
- 1.6.0 (latest)
|
||||
- 1.5.0
|
||||
- 1.4.0
|
||||
- 1.3.0
|
||||
- 1.2.1
|
||||
|
||||
3
.github/workflows/create-release-package.yml
vendored
3
.github/workflows/create-release-package.yml
vendored
@@ -11,7 +11,7 @@ jobs:
|
||||
release:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v6
|
||||
- uses: lukka/get-cmake@latest
|
||||
with:
|
||||
cmakeVersion: "~3.25.0" # <--= optional, use most recent 3.25.x version
|
||||
@@ -28,6 +28,7 @@ jobs:
|
||||
- name: Get current tag message
|
||||
id: tag-message
|
||||
run: |
|
||||
git fetch --tags --force
|
||||
TAG_NAME=${GITHUB_REF#refs/tags/}
|
||||
echo "TAG_NAME: $TAG_NAME"
|
||||
TAG_MESSAGE=$(git tag -l --format='%(contents)' "$TAG_NAME")
|
||||
|
||||
4
.github/workflows/run-checks.yml
vendored
4
.github/workflows/run-checks.yml
vendored
@@ -11,10 +11,10 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v5
|
||||
uses: actions/setup-python@v6
|
||||
with:
|
||||
python-version: '3.8'
|
||||
|
||||
|
||||
6
.github/workflows/run-tests.yml
vendored
6
.github/workflows/run-tests.yml
vendored
@@ -9,7 +9,7 @@ jobs:
|
||||
test-on-ubuntu:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v6
|
||||
- uses: lukka/get-cmake@latest
|
||||
with:
|
||||
cmakeVersion: "~3.25.0"
|
||||
@@ -36,7 +36,7 @@ jobs:
|
||||
test-on-windows:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v6
|
||||
- uses: lukka/get-cmake@latest
|
||||
with:
|
||||
cmakeVersion: "~3.25.0"
|
||||
@@ -54,7 +54,7 @@ jobs:
|
||||
test-on-osx:
|
||||
runs-on: macos-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v6
|
||||
- uses: lukka/get-cmake@latest
|
||||
with:
|
||||
cmakeVersion: "~3.25.0"
|
||||
|
||||
4
.github/workflows/update-dependencies.yml
vendored
4
.github/workflows/update-dependencies.yml
vendored
@@ -16,10 +16,10 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v5
|
||||
uses: actions/setup-python@v6
|
||||
with:
|
||||
python-version: '3.11'
|
||||
|
||||
|
||||
@@ -14,6 +14,10 @@ maddy uses [semver versioning](https://semver.org/).
|
||||
|
||||
## Upcoming
|
||||
|
||||
* ...
|
||||
|
||||
## version 1.6.0 2025-07-26
|
||||
|
||||
*  Added CMake install and find_package() support.
|
||||
*  Script to update maddy version number in all files.
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# maddy
|
||||
|
||||
[](https://opensource.org/licenses/MIT)
|
||||
[](https://semver.org/) <!-- MADDY_VERSION_LINE_REPLACEMENT -->
|
||||
[](https://semver.org/) <!-- MADDY_VERSION_LINE_REPLACEMENT -->
|
||||
|
||||
maddy is a C++ Markdown to HTML **header-only** parser library.
|
||||
|
||||
|
||||
@@ -59,7 +59,7 @@ public:
|
||||
*/
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user