Skip to content

Commit

Permalink
Merge pull request #6 from crozone/develop
Browse files Browse the repository at this point in the history
Release v2.0.3 onto master
  • Loading branch information
crozone authored Aug 21, 2017
2 parents 2960ade + c3ca4f1 commit 905d395
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions FormatWith/FormatWith.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,15 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Title>FormatWith</Title>
<Product>FormatWith</Product>
<Description>FormatWith, a portable .Net Standard library for performing {named} {{parameterized}} string formatting.</Description>
<AssemblyName>FormatWith</AssemblyName>
<AssemblyTitle>FormatWith</AssemblyTitle>
<PackageId>FormatWith</PackageId>
<VersionPrefix>2.0.2</VersionPrefix>
<VersionPrefix>2.0.3</VersionPrefix>
<Authors>Ryan Crosby</Authors>
<Copyright>Copyright © Ryan Crosby 2017</Copyright>
<Description>Provides named string formatting via the string extension .FormatWith(). It formats strings with named parameters based upon an input lookup dictionary or object.</Description>
<PackageTags>NetStandard 2.0 named parameter string formatter</PackageTags>
<PackageProjectUrl>https://github.com/crozone/FormatWith</PackageProjectUrl>
<PackageLicenseUrl>https://opensource.org/licenses/MIT</PackageLicenseUrl>
Expand All @@ -21,12 +24,10 @@
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<RepositoryUrl>https://github.com/crozone/FormatWith</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>
- Project now targets .NET Standard 2.0 (available on .NET Core 2.0, .NET Framework 4.6.1, and others)
<PackageReleaseNotes>- Project now targets .NET Standard 2.0 (available on .NET Core 2.0, .NET Framework 4.6.1, and others)
- Removed seldom used custom formatter API, simplified internal code.
- Increased performance with simpler code, tokenizing text as structs
- Added an extra set of short overloads to the main extension methods, to make them easier to use from languages that don't support default parameters. (Previously, all optional method parameters would be required for the long overload).
- Added support for FormattableString. Using the FormattableWith() method, the format string can be parsed into a FormattableString for custom formatting later.
</PackageReleaseNotes>
- Added support for FormattableString. Using the FormattableWith() method, the format string can be parsed into a FormattableString for custom formatting later.</PackageReleaseNotes>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# FormatWith

[![NuGet](https://img.shields.io/badge/nuget-2.0.2-green.svg)](https://www.nuget.org/packages/FormatWith/)
[![NuGet](https://img.shields.io/badge/nuget-2.0.3-green.svg)](https://www.nuget.org/packages/FormatWith/)
[![license](https://img.shields.io/github/license/mashape/apistatus.svg?maxAge=2592000)]()

A .NET Standard 2.0 library for performing {named} {{parameterized}} string formatting.
Expand Down

0 comments on commit 905d395

Please sign in to comment.