Skip to content

Releases: davidovich/summon

Feature release v0.7.0

05 Jun 03:27
e948012
Compare
Choose a tag to compare

New in this release:

Feature release v0.6.0

19 May 18:44
bf871a9
Compare
Choose a tag to compare

New in this release:

  • Allow outputting version info of the asset data provider. Use the -v flag to output version info of the summon data executable.

Feature release v0.5.0

09 May 02:26
7c3daa4
Compare
Choose a tag to compare

New in this release:

  • Scaffolder no longer adds summon/go.mod which simplifies asset repo tagging (go module submodules is a special case that is not needed). We instead add go.mod to the root of the asset repo, making it a standard go module. Tagging is simpler, you no longer need to prefix the tag with the summon/ submodule path.

  • Scaffolder will call git init to initialize an asset repo for you.

  • Improved Scaffolded README.md

Feature release v0.4.0

23 Apr 13:43
adce6eb
Compare
Choose a tag to compare

New in this release:

  • support outputting asset data to stdout. Use ‘-‘ with the ‘-o’ flag.
  • allow suppressing template rendering with a new ‘--raw’ flag.

Feature release v0.3.0

16 Apr 14:44
a3efe3a
Compare
Choose a tag to compare

New in this release:

  • We now use the sprig library for templating. This allows interesting uses in templates like {{ env "HOME" }}. Note that prior to this change, you were required to pass --json to enable rendering templates, and this limitation has been removed. The corollary is that templates are always rendered and references to un-renderable Actions (delimited by {{ and }}) will be removed from output.

  • gobin referenced in the exec: section of the config file no longer has special treatment. Add -run to get the same effect as before. This means that the referenced go executable is managed completely by gobin, which has it's own cache and output dir (usually at $(go env GOPATH)/bin).

    Here is an example of the new config:

    exec:
      gobin -run:
        gohack: github.com/rogpeppe/[email protected]

Feature release v0.2.0

31 Mar 16:43
df2caea
Compare
Choose a tag to compare

New in this release:

  • Allow summoning of parts of the data repository (#20)

Feature release v0.1.0

21 Mar 00:47
4bf8875
Compare
Choose a tag to compare

New in this release:

  • Add a scaffolder to facilitate creation of summon data repositories (#15)
  • Support golang template rendering in assets (#16)

First official release

10 Mar 22:23
da64f8f
Compare
Choose a tag to compare

This is the first MVP release of the summon library