diff --git a/.changeset/metal-bags-burn.md b/.changeset/metal-bags-burn.md deleted file mode 100644 index 8a37e67..0000000 --- a/.changeset/metal-bags-burn.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ekx/unit": patch ---- - -Change `--no-color` to `--ascii` diff --git a/.changeset/rare-squids-hang.md b/.changeset/rare-squids-hang.md deleted file mode 100644 index 4a58fb1..0000000 --- a/.changeset/rare-squids-hang.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ekx/unit": patch ---- - -add `--version`, `--help`, `--list`, `--short-filenames` options to CLI diff --git a/.changeset/three-beds-yell.md b/.changeset/three-beds-yell.md deleted file mode 100644 index 9739e2c..0000000 --- a/.changeset/three-beds-yell.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ekx/unit": patch ---- - -Rename `--silent` switch to `--quiet` diff --git a/CHANGELOG.md b/CHANGELOG.md index b393764..451a69b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # @ekx/unit +## 0.0.7 + +### Patch Changes + +- 882c062: Change `--no-color` to `--ascii` +- 882c062: add `--version`, `--help`, `--list`, `--short-filenames` options to CLI +- 882c062: Rename `--silent` switch to `--quiet` + ## 0.0.6 ### Patch Changes diff --git a/include/unit.h b/include/unit.h index e708ee3..ec34a8e 100644 --- a/include/unit.h +++ b/include/unit.h @@ -1,5 +1,5 @@ /** - * unit.h - v0.0.6 - Simple header-only testing library for C - https://github.com/eliasku/unit + * unit.h - v0.0.7 - Simple header-only testing library for C - https://github.com/eliasku/unit * * Minimal example. Compile executable with `-D UNIT_TESTING` to enable tests. * @@ -356,7 +356,7 @@ UNIT__FOR_ASSERTS(UNIT__DEFINE_ASSERT) #ifdef UNIT_TESTING -#define UNIT_VERSION "0.0.6" +#define UNIT_VERSION "0.0.7" /** * @deprecated use UNIT_IMPLEMENT or UNIT_MAIN options diff --git a/package.json b/package.json index b136e66..ca3598b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ekx/unit", - "version": "0.0.6", + "version": "0.0.7", "description": "Simple header-only testing library for C", "scripts": { "release": "changeset publish",