From 30bf7f1dba81e57326433647eaf27e2ba4a1a215 Mon Sep 17 00:00:00 2001 From: Omar Khudeira Date: Tue, 14 Jan 2020 09:03:05 -0600 Subject: [PATCH] Update version and copyright --- LICENSE | 2 +- src/ByteSizeLib/ByteSizeLib.csproj | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/LICENSE b/LICENSE index 9884ab8..7aecc5d 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2013-2019 Omar Khudeira (http://omar.io) +Copyright (c) 2013-2020 Omar Khudeira (http://omar.io) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/src/ByteSizeLib/ByteSizeLib.csproj b/src/ByteSizeLib/ByteSizeLib.csproj index bbfc70a..3cb0121 100755 --- a/src/ByteSizeLib/ByteSizeLib.csproj +++ b/src/ByteSizeLib/ByteSizeLib.csproj @@ -3,9 +3,9 @@ ByteSize ByteSize is a utility class that makes byte size representation in code easier by removing ambiguity of the value being represented. ByteSize is to bytes what System.TimeSpan is to time. - Copyright © Omar Khudeira 2013-2019 + Copyright © Omar Khudeira 2013-2020 ByteSize - 2.0.0-beta1 + 2.0.0 2.0.0 Omar Khudeira netstandard1.0;net45 @@ -23,6 +23,7 @@ In the past `ByteSize` assumed `1 KB == 1024 B`, that means if you're upgrading from v1, you'll see differences in values. Other Breaking Changes: + - Renamed property `LargestWholeNumberSymbol` and `LargestWholeNumberValue` to `LargestWholeNumberDecimalSymbol` and `LargestWholeNumberDecimalValue` respectively. - Drop support for all platforms _except_ `netstandard1.0` and `net45`. @@ -30,6 +31,7 @@ New Features: - Support for binary and decimal values (e.g. `ByteSize.FromKibiByte` and `ByteSize.FromKiloByte`). - New constructor that takes a `long` value as the number of bits. +- Support for culture on Parse and TryParse View all release notes at https://github.com/omar/ByteSize/releases. https://github.com/omar/ByteSize