Dagger
Search

changelog

No long description provided.

Installation

dagger install github.com/shykes/dagger/.changes@1b60778efd3ee9a3f016f730649244ceecd76ff8

Entrypoint

Return Type
Changelog !
Arguments
NameTypeDefault ValueDescription
sourceDirectory -No description provided
Example
dagger -m github.com/shykes/dagger/.changes@1b60778efd3ee9a3f016f730649244ceecd76ff8 call \
func (m *MyModule) Example() *dagger.Changelog  {
	return dag.
			Changelog()
}
@function
def example() -> dagger.Changelog:
	return (
		dag.changelog()
	)
@func()
example(): Changelog {
	return dag
		.changelog()
}

Types

Changelog 🔗

generate() 🔗

Generate the changelog with ‘changie merge’. Only run this manually, at release time.

Return Type
Changeset !
Example
dagger -m github.com/shykes/dagger/.changes@1b60778efd3ee9a3f016f730649244ceecd76ff8 call \
 generate
func (m *MyModule) Example() *dagger.Changeset  {
	return dag.
			Changelog().
			Generate()
}
@function
def example() -> dagger.Changeset:
	return (
		dag.changelog()
		.generate()
	)
@func()
example(): Changeset {
	return dag
		.changelog()
		.generate()
}