FAKE - F# Make - A DSL for build tasks and more FAKE
6.0.0

Lookig for older versions of the documentation, pre FAKE v6? See 

v5.fake.build

Changelog.Changelog Type

Holds data for a changelog file, which include changelog entries an other metadata

Record fields

Record Field Description

Description

Full Usage: Description

Field type: string option

The description

Field type: string option

Entries

Full Usage: Entries

Field type: ChangelogEntry list

The change log entries

Field type: ChangelogEntry list

Header

Full Usage: Header

Field type: string

the header line

Field type: string

Unreleased

Full Usage: Unreleased

Field type: Unreleased option

The Unreleased section

Field type: Unreleased option

Instance members

Instance member Description

this.LatestEntry

Full Usage: this.LatestEntry

Returns: ChangelogEntry

the latest change log entry

Returns: ChangelogEntry

this.PromoteUnreleased

Full Usage: this.PromoteUnreleased

Parameters:
    version : string

Returns: Changelog

Promote an unreleased changelog entry to a released one using version number

version : string
Returns: Changelog

this.PromoteUnreleased

Full Usage: this.PromoteUnreleased

Parameters:
    assemblyVersion : string
    nugetVersion : string

Returns: Changelog

Promote an unreleased changelog entry to a released one

assemblyVersion : string
nugetVersion : string
Returns: Changelog

Static members

Static member Description

Changelog.New(header, description, unreleased, entries)

Full Usage: Changelog.New(header, description, unreleased, entries)

Parameters:
Returns: Changelog

Create a new changelog record from given data

header : string
description : string option
unreleased : Unreleased option
entries : ChangelogEntry list
Returns: Changelog