Skip to content

Commit 5b1b0a4

Browse files
author
m.volkau
committed
releasing v2.0.0
1 parent fffc2c5 commit 5b1b0a4

File tree

6 files changed

+243
-257
lines changed

6 files changed

+243
-257
lines changed

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<LangVersion>Latest</LangVersion>
66

77
<Authors>Maksim Volkau</Authors>
8-
<Copyright>Copyright © 2016-2019 Maksim Volkau</Copyright>
8+
<Copyright>Copyright © 2016-2020 Maksim Volkau</Copyright>
99

1010
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
1111
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>

nuspecs/ImTools.nuspec

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,35 +2,33 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata minClientVersion="3.3.0">
44
<id>ImTools</id>
5-
<version>2.0.0-preview-01</version>
5+
<version>2.0.0</version>
66
<authors>Maksim Volkau</authors>
7-
<copyright>Copyright © 2016-2019 Maksim Volkau</copyright>
7+
<copyright>Copyright © 2016-2020 Maksim Volkau</copyright>
88
<projectUrl>https://github.com/dadhi/ImTools</projectUrl>
99
<license type="expression">MIT</license>
1010
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1111
<description>
1212
<![CDATA[
13-
Immutable persistent collections, algebraic sum-type aka descriminated union, Ref type and supportive extensions for performant functional programming in C#.
14-
Split from the DryIoc: https://github.com/dadhi/DryIoc
13+
Immutable persistent collections, algebraic sum-type aka descriminated union, Ref type and supportive extensions for performant functional programming in C#.
14+
Split from the DryIoc: https://github.com/dadhi/DryIoc
1515
]]>
1616
</description>
1717
<tags>FP Performance Simple Functional Immutable Persistent Map Avl Balanced Tree Dictionary Thread-safe Functional Atomic Ref Algebraic Discriminated Union SumType</tags>
1818
<releaseNotes>
1919
<![CDATA[
20-
## v2.0.0 Release notes:
21-
22-
### Features
23-
20+
## v2.0.0 Major feature release
21+
22+
### Highlights
23+
2424
- Faster and less allocative ImMap and ImHashMap with more methods (plus bucketed ImMapSlots and ImHashMapSlots variants)
2525
- Algebraic sum-type aka descriminated union and one-liner records - Union<TUnion, T1..N>, Box<TBox, T>, Item<TItem, T>
2626
- GrowingList<T>, ImZipper<T>, StackPool<T>, Unit, Fun extensions with forward pipe operators
2727
- Ref.Swap now accepts state to use closure-less lambdas with less allocations
28-
- likely more
29-
30-
## Fixes
28+
29+
### Details
3130
32-
- fixed: wrong KV<K,V> ToString output
33-
- fixed: likely more
31+
https://github.com/dadhi/ImTools/milestone/2
3432
]]>
3533
</releaseNotes>
3634
<contentFiles>

playground/ImTools.UnionPlayground/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// MIT licensed to Maksim Volkau 2018-2019
1+
// MIT licensed to Maksim Volkau 2018-2020
22

33
using System;
44
using static System.Console;

0 commit comments

Comments
 (0)