Skip to content
This repository was archived by the owner on Jun 7, 2025. It is now read-only.

Commit 97f2a1b

Browse files
Build version 1.2.0
1 parent 8ffb849 commit 97f2a1b

5 files changed

Lines changed: 27 additions & 14 deletions

File tree

CHANGELOG.md

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

3-
## v1.2 (Work in Progress)
3+
## v1.2
44

55
What's new in version 1.2:
66

PatternMatching.Docs/docfx.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"globalMetadata": {
6363
"_appLogoPath": "logo.svg",
6464
"_appFaviconPath": "favicon.ico",
65-
"_appFooter": "<div>Copyright (c) 2018 Tolik Pylypchuk</div><span>Generated by <strong>DocFx</strong>.</span> <span>Icons made by <a href=\"https\"://www.flaticon.com/authors/roundicons\" title=\"Roundicons\">Roundicons</a> from <a href=\"https://www.flaticon.com/\" title=\"Flaticon\">www.flaticon.com</a> is licensed by <a href=\"http://creativecommons.org/licenses/by/3.0/\" title=\"Creative Commons BY 3.0\" target=\"_blank\">CC 3.0 BY</a></span>"
65+
"_appFooter": "<div>Copyright (c) 2018-2020 Tolik Pylypchuk</div><span>Generated by <strong>DocFx</strong>.</span> <span>Icons made by <a href=\"https\"://www.flaticon.com/authors/roundicons\" title=\"Roundicons\">Roundicons</a> from <a href=\"https://www.flaticon.com/\" title=\"Flaticon\">www.flaticon.com</a> is licensed by <a href=\"http://creativecommons.org/licenses/by/3.0/\" title=\"Creative Commons BY 3.0\" target=\"_blank\">CC 3.0 BY</a></span>"
6666
},
6767
"globalMetadataFiles": [],
6868
"fileMetadataFiles": [],

PatternMatching.Docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ A library which enables more powerful pattern matching
44
than is currently available in the C#'s `switch` statement.
55

66
You can look through the
7-
[articles](https://tolikpylypchuk.github.io/PatternMatching/v1.1.0/articles/intro.html)
7+
[articles](https://tolikpylypchuk.github.io/PatternMatching/v1.2.0/articles/intro.html)
88
to find out more about this library, or dive into the
9-
[API reference](https://tolikpylypchuk.github.io/PatternMatching/v1.1.0/api/index.html).
9+
[API reference](https://tolikpylypchuk.github.io/PatternMatching/v1.2.0/api/index.html).
1010

1111
https://github.com/TolikPylypchuk/PatternMatching
1212

PatternMatching/PatternMatching.csproj

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,17 @@
66
<PackageTags>csharp pattern-matching functional-programming</PackageTags>
77
<PackageId>CSharpStuff.PatternMatching</PackageId>
88
<Authors>tolik-pylypchuk</Authors>
9-
<Description>A library which enables more powerful pattern matching than is currently available in the switch statement.</Description>
10-
<Copyright>Copyright © 2018 Tolik Pylypchuk</Copyright>
11-
<PackageLicenseUrl>https://github.com/TolikPylypchuk/PatternMatching/blob/master/LICENSE</PackageLicenseUrl>
9+
<Description>A library which enables more powerful pattern matching than is currently available in the switch statement/expression.</Description>
10+
<Copyright>Copyright © 2018-2020 Tolik Pylypchuk</Copyright>
11+
<PackageLicenseUrl></PackageLicenseUrl>
1212
<RepositoryUrl>https://github.com/TolikPylypchuk/PatternMatching</RepositoryUrl>
13-
<PackageProjectUrl>https://tolikpylypchuk.github.io/PatternMatching/v1.1.0</PackageProjectUrl>
13+
<PackageProjectUrl>https://tolikpylypchuk.github.io/PatternMatching</PackageProjectUrl>
1414
<RepositoryType>git</RepositoryType>
15-
<PackageIconUrl>https://github.com/TolikPylypchuk/PatternMatching/raw/master/logo.png</PackageIconUrl>
15+
<PackageIconUrl></PackageIconUrl>
1616
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
1717
<Version>1.2.0</Version>
18+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
19+
<PackageIcon>logo.png</PackageIcon>
1820
</PropertyGroup>
1921

2022
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
@@ -26,4 +28,15 @@
2628
<PackageReference Include="System.Dynamic.Runtime" Version="4.3.0" />
2729
</ItemGroup>
2830

31+
<ItemGroup>
32+
<None Include="..\LICENSE">
33+
<Pack>True</Pack>
34+
<PackagePath></PackagePath>
35+
</None>
36+
<None Include="..\logo.png">
37+
<Pack>True</Pack>
38+
<PackagePath></PackagePath>
39+
</None>
40+
</ItemGroup>
41+
2942
</Project>

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
[![Build status](https://ci.appveyor.com/api/projects/status/2scf378j79k6xe7f/branch/master?svg=true)](https://ci.appveyor.com/project/TolikPylypchuk/patternmatching/branch/master)
55

66
A library which enables more powerful pattern matching
7-
than is currently available in the C#'s `switch` statement.
7+
than is currently available in the C#'s `switch` statement/expression.
88

99
## Installation
1010

1111
```
12-
Install-Package CSharpStuff.PatternMatching -Version 1.1.0
12+
Install-Package CSharpStuff.PatternMatching -Version 1.2.0
1313
```
1414

1515
## A simple example
@@ -79,14 +79,14 @@ the `Any` pattern should always come last.
7979

8080
The documentation can be found here:
8181

82-
- Version 1.2.0 (WIP): https://tolikpylypchuk.github.io/PatternMatching/v1.2.0
82+
- Version 1.2.0: https://tolikpylypchuk.github.io/PatternMatching/v1.2.0
8383
- Version 1.1.0: https://tolikpylypchuk.github.io/PatternMatching/v1.1.0
8484
- Version 1.0.0: https://tolikpylypchuk.github.io/PatternMatching/v1.0.0
8585

8686
## Is this library still maintained?
8787

88-
The answer is definitely yes. I'm currently working on version 1.2, which will fix
89-
a couple bugs and include lots of tests for everything. After that I'm planning on
88+
The answer is definitely yes. I've just released version 1.2, which fixed
89+
a couple bugs and included lots of tests for everything. After that I'm planning on
9090
working on version 2.0, which will drop the dependency on language-ext
9191
(major breaking changes coming), and version 2.1, which will add support
9292
for nullable reference types and as such, will target .NET Standard 2.1.

0 commit comments

Comments
 (0)