Note: This API documentation is for FAKE version 4. The migration API documentation can be found
here. The API documentation for the new fake 5 modules can be found
here
ReleaseNotesHelper
Contains helpers which allow to parse Release Notes text files. Either "simple" or "complex" format is accepted.
Formats
Simple format
1: 2: |
|
Complex format
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: |
|
Sample
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: |
|
Nested types and modules
Type | Description |
ReleaseNotes |
Contains the parsed information of the release notes text file. |
Functions and values
Function or value | Description |
LoadReleaseNotes(fileName)
Signature: fileName:string -> ReleaseNotes
|
Parses a Release Notes text file and returns the lastest release notes. Parameters
|
parseAllReleaseNotes(data)
Signature: data:seq<string> -> ReleaseNotes list
|
Parses a Release Notes text and returns all release notes. Parameters
|
parseDate
Signature: string -> DateTime option
|
|
parseReleaseNotes(data)
Signature: data:seq<string> -> ReleaseNotes
|
Parses a Release Notes text and returns the lastest release notes. Parameters
|
parseVersions
Signature: string -> Match * Match
|