Skip to content

Commit c997e89

Browse files
committed
Bump version
1 parent 500c946 commit c997e89

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Console.WriteLine(format.Format(1234.56, CultureInfo.InvariantCulture));
2424

2525
## Features
2626

27-
- Parses and formats most custom number formats as expected: decimal, percent, thousands, exponential, fraction, date/time, duration, text.
27+
- Parses and formats most custom number formats as expected: decimal, percent, thousands, exponential, fraction, currency, date/time, duration, text.
2828
- Supports multiple sections with conditions.
2929
- Formats values with relevant constants from CultureInfo.
3030
- Formats dates and durations using DateTime and TimeSpan values instead of numeric values like Excel.
@@ -50,7 +50,8 @@ In case of errors, `Format()` returns the value from `Convert.ToString()`.
5050

5151
- 'General' is formatted with `.ToString()` instead of Excel conventions.
5252
- No errors: Invalid format strings and incompatible input values are formatted with `.ToString()`.
53-
- All modifiers in square brackets except conditions are ignored (f.ex color, currency).
53+
- No color information.
5454
- Variable width space is returned as regular space.
5555
- Repeat-to-fill characters are printed once, not repeated.
5656
- No alignment hinting.
57+
- No date conditions.

src/ExcelNumberFormat/ExcelNumberFormat.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFrameworks>net20;netstandard1.0</TargetFrameworks>
5-
<VersionPrefix>1.0.3</VersionPrefix>
5+
<VersionPrefix>1.0.4</VersionPrefix>
66
<GenerateDocumentationFile>true</GenerateDocumentationFile>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<Description>.NET library to parse ECMA-376 number format strings and format values like Excel and other spreadsheet softwares.</Description>

0 commit comments

Comments
 (0)