Skip to content

Commit 4015d08

Browse files
committed
up version to 1.4.0
1 parent 4518e40 commit 4015d08

File tree

8 files changed

+20
-19
lines changed

8 files changed

+20
-19
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.3.0 (latest)
40+
- 1.4.0 (latest)
41+
- 1.3.0
4142
- 1.2.1
4243
- 1.2.0
4344
- 1.1.2

.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.3.0 (latest)
40+
- 1.4.0 (latest)
41+
- 1.3.0
4142
- 1.2.1
4243
- 1.2.0
4344
- 1.1.2

.github/workflows/run-checks.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
name: run-checks
2-
2+
run-name: run-checks ${{ github.ref }}
33
on:
44
push:
55
branches:
66
- master
77
pull_request:
8-
8+
pull_request_target:
9+
branches:
10+
- master
911
jobs:
1012
run-clang-format:
1113
runs-on: ubuntu-24.04

.github/workflows/run-tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
name: run-tests
22
run-name: test ${{ github.ref }}
33
on:
4-
pull_request:
54
push:
65
branches:
76
- master
8-
- dev
7+
pull_request:
8+
pull_request_target:
9+
branches:
10+
- master
911
jobs:
1012
test-on-ubuntu:
1113
runs-on: ubuntu-latest

CHANGELOG.md

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

1515
## Upcoming
1616

17+
## version 1.4.0 2025-03-28
18+
1719
* ![**CHANGED**](https://img.shields.io/badge/-CHANGED-%23e90) Updated google test to v1.16.0.
1820
* ![**ADDED**](https://img.shields.io/badge/-ADDED-%23099) clang-format
1921
* ![**ADDED**](https://img.shields.io/badge/-ADDED-%23099) automatic update dependencies ci

CONTRIBUTING.md

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,10 @@ improve the code? Then [create a GitHub issue](https://github.com/progsource/mad
1010
## Creating Pull-Requests
1111

1212
* Use a branch other than master.
13-
* Add yourself to the `AUTHORS` file.
14-
* Try to stick with the code style the files are having right now.
15-
* Write in your commit messages what/why you did something. Often times a one-liner might be enough, but if you want to write more, make an empty line in between like:
16-
```
17-
Short description
18-
19-
More and longer text for the commit message with some more information.
20-
That can go over multiple lines.
21-
```
22-
Do not include Github issue ticket numbers inside commit messages.
13+
* Feel free to add yourself to the `AUTHORS` file. (optional)
14+
* Use clang-format to format the code.
15+
* Write in your commit messages what/why you did something. Often times a one-liner might be enough.
2316
* Explain for what your PR is for - like providing a use-case or something similar.
2417
* Update documentation of the Markdown syntax if anything changed there. (`docs/definitions.md`)
2518
* Add a changelog entry at "Upcoming" inside of `CHANGELOG.md`
26-
* Make sure, that the tests are successful.
19+
* Make sure, that the tests are successful and if you wrote a bugfix, to have a test, that highlights the issue.

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.3.0](https://img.shields.io/badge/Version-1.3.0-brightgreen.svg)](https://semver.org/)
4+
[![Version: 1.4.0](https://img.shields.io/badge/Version-1.4.0-brightgreen.svg)](https://semver.org/)
55

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

include/maddy/parser.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class Parser
5959
*/
6060
static const std::string& version()
6161
{
62-
static const std::string v = "1.3.0";
62+
static const std::string v = "1.4.0";
6363
return v;
6464
}
6565

0 commit comments

Comments
 (0)