Skip to content

Commit 4f97721

Browse files
authored
Release 1.5.0
* Use the git tag as release name * Update version to 1.5.0 * stabilize benchmark code
1 parent 9ec4777 commit 4f97721

File tree

12 files changed

+435
-13
lines changed

12 files changed

+435
-13
lines changed

.github/ISSUE_TEMPLATE/cpp-bug-report.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ body:
3737
label: maddy version
3838
description: What version of maddy are you using?
3939
options:
40-
- 1.4.0 (latest)
40+
- 1.5.0 (latest)
41+
- 1.4.0
4142
- 1.3.0
4243
- 1.2.1
4344
- 1.2.0

.github/ISSUE_TEMPLATE/markdown-bug-report.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ body:
3737
label: maddy version
3838
description: What version of maddy are you using?
3939
options:
40-
- 1.4.0 (latest)
40+
- 1.5.0 (latest)
41+
- 1.4.0
4142
- 1.3.0
4243
- 1.2.1
4344
- 1.2.0

.github/workflows/create-release-package.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,10 @@ jobs:
4040
repo_token: ${{ secrets.GITHUB_TOKEN }}
4141
file: build/maddy-src.zip
4242
tag: ${{ github.ref }}
43+
release_name: ${{ github.ref }}
4344
body: |
4445
${{ steps.tag-message.outputs.message }}
4546
4647
---
4748
48-
You can find all changes of this release in the [changelog](https://github.com/progsource/maddy/blob/master/CHANGELOG.md)
49+
[full changelog](https://github.com/progsource/maddy/blob/master/CHANGELOG.md)

.github/workflows/run-checks.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ on:
55
branches:
66
- master
77
pull_request:
8-
pull_request_target:
9-
branches:
10-
- master
118
jobs:
129
run-clang-format:
1310
runs-on: ubuntu-24.04

.github/workflows/run-tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ on:
55
branches:
66
- master
77
pull_request:
8-
pull_request_target:
9-
branches:
10-
- master
118
jobs:
129
test-on-ubuntu:
1310
runs-on: ubuntu-latest

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ maddy uses [semver versioning](https://semver.org/).
1414

1515
## Upcoming
1616

17+
* ...
18+
19+
## version 1.5.0 2025-04-21
20+
1721
* ![**ADDED**](https://img.shields.io/badge/-ADDED-%23099) Correctly parse links with title text, i.e. `[link](http://example.com "example")`.
1822
* ![**FIXED**](https://img.shields.io/badge/-FIXED-%23090) Do not create invalid URLs from links with spaces, i.e. `[link](/ABC/some file)`.
1923
* ![**FIXED**](https://img.shields.io/badge/-FIXED-%23090) Do not create invalid HTML from links with quotes, i.e. `[link](/ABC/some"file)`.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2017, 2018, 2019, 2020, 2023 M. Petra Baranski
1+
Copyright M. Petra Baranski (for contributors see AUTHORS file)
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy of
44
this software and associated documentation files (the "Software"), to deal in

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# maddy
22

33
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
4-
[![Version: 1.4.0](https://img.shields.io/badge/Version-1.4.0-brightgreen.svg)](https://semver.org/)
4+
[![Version: 1.5.0](https://img.shields.io/badge/Version-1.5.0-brightgreen.svg)](https://semver.org/)
55

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

bench/CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ file(GLOB_RECURSE MADDY_BENCHMARK_FILES
3535

3636
# ------------------------------------------------------------------------------
3737

38+
add_compile_definitions(CURRENT_FILE_PATH="${CMAKE_CURRENT_SOURCE_DIR}")
39+
40+
# ------------------------------------------------------------------------------
41+
3842
add_executable(
3943
maddy_benchmark
4044
${MADDY_BENCHMARK_FILES}

0 commit comments

Comments
 (0)