UNPKG

release-please

Version:

generate release PRs based on the conventionalcommits.org spec

10 lines (9 loc) 470 B
import { BaseStrategy, BuildUpdatesOptions, BaseStrategyOptions } from './base'; import { ConventionalCommit } from '../commit'; import { Update } from '../update'; export declare class Ruby extends BaseStrategy { readonly versionFile: string; constructor(options: BaseStrategyOptions); protected buildUpdates(options: BuildUpdatesOptions): Promise<Update[]>; protected postProcessCommits(commits: ConventionalCommit[]): Promise<ConventionalCommit[]>; }