changelog
No long description provided.
Installation
dagger install github.com/Superoldman96/dagger/.changes@0a36b734746427acbb2e74fe917aeeb54e0a9785Entrypoint
Return Type
Changelog !Arguments
| Name | Type | Default Value | Description |
|---|---|---|---|
| source | Directory | - | No description provided |
Example
dagger -m github.com/Superoldman96/dagger/.changes@0a36b734746427acbb2e74fe917aeeb54e0a9785 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/Superoldman96/dagger/.changes@0a36b734746427acbb2e74fe917aeeb54e0a9785 call \
generatefunc (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()
}