Releases: Macil/aocd
Releases · Macil/aocd
v2.0.2
- Changed
aocd init YEAR
to no longer require the directory it's used in to be fully empty. Now it only gives an error if the directory has any files that conflict with the files it creates. This was mainly done so that no issue would be caused if you create a git repo first in the directory before running the init command.
v2.0.1
- Simplified template project test configuration. Now
deno test
can be used to run all day scripts' tests, and the "test" deno task is unnecessary. This is done by configuring the template project's deno.json to includeday_*.*
files as test files. Deno did not support this when the template project was originally created.
v2.0.0
v1.6.1
This release fixes the installable CLI script in the JSR package being broken in new installs. One of Aocd's dependencies was a pre-release version and that project released a new version with a minor incompatible change. This release fixes compatibility with that new version and pins the dependency's version to prevent the issue from happening again.
v1.6.0
Initial JSR release. New versions of the library are now published at https://jsr.io/@macil/aocd instead of at https://deno.land/x/aocd.
v1.5.2
The project template now imports the JSR package @std/assert instead of the deno.land/std URL import.
v1.5.1
v1.5.0
v1.4.3
v1.4.2
- Updated the project template to no longer use now-deprecated Deno standard library "/testing/asserts.ts" import in favor of new "/assert/mod.ts" import.
- Fixed a typo in an error message's suggested command.