export interface ICommitInfo {
    /**
     * the name of the project
     */
    name: string;
    /**
     * the current version of the project
     */
    version: string;
    /**
     * the description of the project
     */
    description: string;
    /**
     * the changelog of the project
     */
    changelog?: string[];
}
