Note: This is the migration API reference for FAKE 5. The new (modularized) API documentation can be found
here.
If the API is already migrated you can check here if exists in a module.
More information regarding the migration can be found here
ReleaseNotes
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 |
ReleaseNotes.load(fileName)
Signature: fileName:string -> ReleaseNotes
|
Parses a Release Notes text file and returns the lastest release notes. Parameters
|
ReleaseNotes.parse(data)
Signature: data:seq<string> -> ReleaseNotes
|
Parses a Release Notes text and returns the lastest release notes. Parameters
|
ReleaseNotes.parseAll(data)
Signature: data:seq<string> -> ReleaseNotes list
|
Parses a Release Notes text and returns all release notes. Parameters
|