-
Notifications
You must be signed in to change notification settings - Fork 71
/
RELEASE-NOTES.txt
78 lines (47 loc) · 2.58 KB
/
RELEASE-NOTES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
v.6.1.0
- Add support for .NET 9.0
v.6.0.0
- Update the target frameworks (Drop the support for .NET4.5.2)
- Fix: Enumerating never breaks if the end of the IPv4 address range is "255.255.255.255" (Issue #80)
v.5.0.0
- Update the target frameworks (Drop the support for .NET4.5)
v.4.2.0
- Improved the performance of the "GetPrefixLength ()" method.
v.4.1.3
- Fix: Rewriting the "Begin" and "End" properties did not apply to the "Contains()" operation.
v.4.1.2
- Fix: "Contains()" method was broken when using the mask length constructor.
v.4.1.1
- Fix: "Contains()" method of IPv6 range returns an invalid result in some cases.
v.4.1.0
- Improved some operations (enumeration, and count it) performance.
v.4.0.0
- Implement "IEquatable<T>" interface and "GetHashCode()".
v.3.2.2
- Fix: Parsing non-linear subnet mask should be failed.
v.3.2.1
- Fix implementation problem (Remove useless GetAddressBytes)
v.3.2.0
- Fix: Bits.GE/LE operations are reversed.(use GtE/LtE instead.)
- Improve: Bts.GtE/LtE methods are more faster now.
v.3.1.1 - Fix: Error if parsing IP address includes some spaces.
v.3.1.0 - Support parsing for IPv4 mapped to IPv6 address range.
v.3.0.0 - Sign the assembly. (make it to strong-named assembly.)
v.2.2.0 - Enhance: IPv4 shortcut notation support (like "192.168.0.0-255").
v.2.1.1 - Fix: Error if parsing IP address with scope id in the end.
v.2.1.0 - Enhance: Add "IsEqual" and "Decrement" methods to "Bits" utility class.
v.2.0.0 - [BREAKING CHANGE] Truncate .NET 4.0 support.
- Enhance: can serialize/deserialize json text by JSON.NET
v.1.6.2 - Support: .NET Standard 1.4 (.NET Core) and UWP
v.1.6.1 - Fix: Add some parameter checks for throwing ArgumentNullException
v.1.6.0 - Enhance: Add "ToCidrString()" and "GetprefixLength()" method.
v.1.5.0 - Enhance: Add constructors variation / Save memory usage.
v.1.4.0 - Enhance: Add IEnumerable<IPAddress> support.
v.1.3.0 - Enhance: support both "hyphen (-)" (0x002D) and "dash (–)" (0x2013) at begin-end format.
v.1.2.1 - Fix: "Parse()" and "TryParse()" methods throw IndexOutOfRangeException when bit mask length is invalid at CIDR format.
v.1.2.0 - Enhance: Add "Parse()" and "TryParse()" methods. (Instead, the constructor which has one string argument is obsoleted.)
v.1.1.0 - Enhance: Add "Contains()" method overload version of IPAddressRange argument.
v.1.0.6 - Fix Package: Repackage with Release build. (1.0.5 was Debug build)
v.1.0.5 - Fix: IPv4 CIDR range ".../32" causes crush.
v.1.0.4 - Enhance: support bit mask range not only CIDR range.
v.1.0.3 - Fix: Can not parse the address which contains hex string.