diff --git a/Release Notes.md b/Release Notes.md index 7edc22d..8b1520a 100644 --- a/Release Notes.md +++ b/Release Notes.md @@ -1,19 +1,19 @@ ### New in 0.4.0 -* Static methods 'Parse' and 'TryParse' are lifted. -* A variant of 'TryParse' returning a nullable instead of using an out +* Static methods `Parse` and `TryParse` are lifted. +* A variant of `TryParse` returning a nullable instead of using an out parameter is generated if TryParse exists. * Types can now be placed in the same file and the default is to place them all in a file named as the .stidgen file but with a .Generated.cs extension. - The previous behavior is available by specifying 'UseNameAsFileName: true'. + The previous behavior is available by specifying `UseNameAsFileName: true`. * Added a more complete set of unit tests. * Multiple files can now be passed to the command line. -* The command line now support globs like "**\*.stidgen". +* The command line now support globs like `**\*.stidgen`. * Generated files and types are now shown on the console. * BUGFIX: Generic underlying types weren't correctly handled, the name was the FullName of the Type instead of C# code. * BUGFIX: Casts to and from nullable were still generated for Nullable underlying resulting in invalid code. -* BUGFIX: 'EqualsUnderlying: true' generated code for '.Equals' but didn't +* BUGFIX: `EqualsUnderlying: true` generated code for `.Equals` but didn't generate the == and != operators. ### New in 0.3.0 @@ -23,14 +23,14 @@ present in the generated code. ### New in 0.2.0 -* Generated files are now named with '.Generated.cs' at the end. -* Generated file now start with a '' comment. -* All methods generated are now marked with 'GeneratedCodeAttribute'. +* Generated files are now named with `.Generated.cs` at the end. +* Generated file now start with a `` comment. +* All methods generated are now marked with `GeneratedCodeAttribute`. * A partial method named "Check" + propertyName is now generated to validate constructor arguments if needed. ### New in 0.1.1 -* Remove package dependencies and include all necessary files in the '.nupkg'. +* Remove package dependencies and include all necessary files in the `.nupkg`. ### New in 0.1.0 * First version \ No newline at end of file