Skip to content

Commit db57098

Browse files
committed
Release 1.2.1
1 parent 49b2e80 commit db57098

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
# 1.2.1
2+
## What's Changed
3+
### Multiline comments are now formatted in a single line in XML format [#1747](https://github.com/belav/csharpier/issues/1747)
4+
The 1.2.0 release was combining xml comments into a single line.
5+
```xml
6+
<!-- input & expected output -->
7+
<Root>
8+
<!-- This is the first line comment-->
9+
<!-- This is the second line of my comment-->
10+
</Root>
11+
12+
<!-- 1.2.0 -->
13+
<Root>
14+
<!-- This is the first line comment--><!-- This is the second line of my comment-->
15+
</Root>
16+
```
17+
18+
**Full Changelog**: https://github.com/belav/csharpier/compare/1.2.0...1.2.1
119
# 1.2.0
220
## What's Changed
321
### Custom XML Parser [#1679](https://github.com/belav/csharpier/pull/1679)
@@ -3653,5 +3671,6 @@ Thanks go to @pingzing
36533671
36543672
36553673
3674+
36563675
36573676

Nuget/Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<Version>1.2.0</Version>
3+
<Version>1.2.1</Version>
44
<PackageLicenseExpression>MIT</PackageLicenseExpression>
55
<RepositoryUrl>https://github.com/belav/csharpier</RepositoryUrl>
66
<RepositoryType>git</RepositoryType>

0 commit comments

Comments
 (0)