Skip to content
This repository was archived by the owner on Mar 1, 2023. It is now read-only.

Commit 4259c4d

Browse files
authored
Merge pull request #3 from PrisisForks/feature/changelog
feat: added changelog
2 parents ded70b1 + 77a33fd commit 4259c4d

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

.changelog

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33
declare(strict_types=1);
44

55
use ChangelogGenerator\ChangelogConfig;
6+
use Narrowspark\ExceptionInspector\Inspector;
67

78
return [
89
(new ChangelogConfig(
910
'narrowspark',
10-
'php-library-template',
11-
'v0.0.0',
11+
'exception-inspector',
12+
'v' . Inspector::VERSION,
1213
['Added', 'Changed', 'Deprecated', 'Removed', 'Fixed', 'Security']
1314
))
1415
];

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
v1.0.0
2+
======
3+
4+
- Total issues resolved: **0**
5+
- Total pull requests resolved: **2**
6+
- Total contributors: **1**
7+
8+
Added
9+
-----
10+
11+
- [2: feat : added docs, new test for out of range exception](https://github.com/narrowspark/exception-inspector/pull/2) thanks to @prisis
12+
- [1: Added Frame, FrameCollection and Inspector for exceptions](https://github.com/narrowspark/exception-inspector/pull/1) thanks to @prisis
13+

src/Inspector.php

+3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919

2020
final class Inspector
2121
{
22+
/** @var string */
23+
public const VERSION = '1.0.0';
24+
2225
/** @var string */
2326
private const PATTERN = "/\\[<a href='([^']+)'>(?:[^<]+)<\\/a>\\]/";
2427

0 commit comments

Comments
 (0)