Skip to content

Releases: fspoettel/advent-of-code-rust

v0.7.0

29 Nov 13:21
Compare
Choose a tag to compare

What's Changed

  • compatibility with latest aoc-cli release (v.0.5.0). if you are updating an existing repo, run: cargo install aoc-cli --version 0.5.0
  • chore: add publish=false by @tguichaoua in #9
  • chore: remove hashbrown crate suggestion by @tguichaoua in #10

New Contributors

Full Changelog: v0.6.3...v0.7.0

v0.6.3

06 Nov 20:29
Compare
Choose a tag to compare
  • compatibility with latest aoc-cli release (v.0.4.0) @peteanning

v0.6.2

06 Nov 10:12
Compare
Choose a tag to compare
  • rename cargo day alias to cargo solve. this makes for a clearer distinction between scaffold and solve.
  • rename default repo branch from master to main.

v0.6.1

29 Oct 15:27
Compare
Choose a tag to compare
  • clearly mark template code.
  • update solution template.

v0.6.0

29 Oct 15:14
Compare
Choose a tag to compare
  • return options from solution parts. None indicates that a given part is not solved yet which reflects in console output.
  • rewrite solve macro to work with individual solution parts.
  • add instructions how to use LLDB for debugging.

v0.5.0

29 Oct 12:40
Compare
Choose a tag to compare
  • add -y flag (alias for --year) for downloading input from past years. example: cargo download 5 -y 2018

v0.4.0

18 Oct 09:30
Compare
Choose a tag to compare
  • add aliases for running solutions. Instead of typing out cargo run --bin <day>, you can now run cargo day <day>. cargo run has been aliased to cargo all.

v0.3.0

17 Oct 16:47
Compare
Choose a tag to compare
  • implement scripts in rust. this adds support for windows and nifty cargo aliases. usage: cargo scaffold and cargo download.

v0.2.0

17 Oct 10:12
Compare
Choose a tag to compare
  • add canonical helpers module for extracted aoc code.
  • make readme stars action opt-in via AOC_ENABLED secret. this avoids spammy workflow failures and saves CI time when not working actively on aoc.
  • extract optional features section and add useful crates in docs.