• Parameters

    • params: {
          all?: boolean;
          cwd?: string | URL;
          dryRun?: boolean;
          params?: VersioningOptions;
          since: string;
          type?: ReleaseType;
          withRoot?: boolean;
          workspace: WorkspacePackage[];
      }
      • Optionalall?: boolean

        whether to bump version of all packages, not just changed ones

      • Optionalcwd?: string | URL

        root of the git repo

      • OptionaldryRun?: boolean

        whether to not actually write the files

      • Optionalparams?: VersioningOptions

        versioning params

      • since: string

        starting point for the changelog (defaults to latest tag)

      • Optionaltype?: ReleaseType
      • OptionalwithRoot?: boolean

        whether to also bump version of the root package.json

      • workspace: WorkspacePackage[]

        packages for which to generate the changelog

    Returns Promise<BumpVersionResult>