Skip to main content
Module

x/changelog/mod.ts>Release

Node & Deno package to parse and generate changelogs
Go to Latest
class Release
Re-export
import { Release } from "https://deno.land/x/changelog@v2.2.1/mod.ts";

Constructors

new
Release(
version?: string | Semver,
date?: string | Date,
description?,
)

Properties

optional
changelog: Changelog
changes: Map<string, Change[]>
optional
date: Date
description: string
optional
version: Semver
yanked: boolean

Methods

addChange(type: string, change: Change | string)
added(change: Change | string)
changed(change: Change | string)
compare(release: Release)
deprecated(change: Change | string)
fixed(change: Change | string)
removed(change: Change | string)
security(change: Change | string)
setDate(date?: Date | string)
setVersion(version?: string | Semver)
setYanked(yanked?)
toString(changelog?: Changelog)