Skip to content

0.3.0

Compare
Choose a tag to compare
@github-actions github-actions released this 25 May 21:41
· 28 commits to master since this release
72afd85

New Features

  • New value source: AWS EC2 metadata service

  • New value source: AWS EC2 instance tags

  • Added a simple CLI implementation for templating files

  • Setup Github CI and release workflow

Breaking Changes

  • Restructured the project to simplify the API
    • Renamed the ValueLoader trait to Loader
    • Made the seed module public only to the crate. This means that if you were using germinate::seed::Seed::new(...) anywhere, you will need to change to use germinate::Seed::new(...) instead
    • Changed the load method on the Loader trait to take a&str instead of a String. This avoids an allocation and makes the API simpler