From 9dd1d2e674d0668d5e86d8f3e9c75795b1c23c55 Mon Sep 17 00:00:00 2001 From: Nahuel Garbezza Date: Tue, 6 Feb 2024 09:49:17 -0300 Subject: [PATCH] :bookmark: release v7.0.0 :tada: --- .github/workflows/node_ci.yml | 2 +- CHANGELOG.md | 11 +++++++---- package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 11 insertions(+), 8 deletions(-) diff --git a/.github/workflows/node_ci.yml b/.github/workflows/node_ci.yml index ecd02640..4667961f 100644 --- a/.github/workflows/node_ci.yml +++ b/.github/workflows/node_ci.yml @@ -39,7 +39,7 @@ jobs: -Dsonar.projectKey=ngarbezza_testy -Dsonar.organization=ngarbezza -Dsonar.projectName=Testy - -Dsonar.projectVersion=6.1.0 + -Dsonar.projectVersion=7.0.0 -Dsonar.javascript.lcov.reportPaths=reports/coverage/lcov.info -Dsonar.coverage.exclusions=tests/** env: diff --git a/CHANGELOG.md b/CHANGELOG.md index 58c82958..bb1050c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,13 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -[//]: # (Everything is released :tada:) +Everything is released :tada: + +## [7.0.0] - 2024-02-05 ### Breaking changes * :boom: We migrated from CommonJS to ES Modules. This was a heavy change, and it will affect all the users, but we -think it is the right step to go to support modern Node versions. ADR `#0013` was added with more info about this -decision. +think it is the right step to go to support modern Node versions. Unfortunately, due to complexity generating the +package, CommonJS will not be supported.ADR `#0013` was added with more info about this decision. * :boom: Node 18.x or higher is required. Support for Node 12.x, 14.x and 16.x has dropped. Support for Node 20.x is added. [Commit](https://github.com/ngarbezza/testy/commit/b8e62c11321b92bd4bc136293db815de7a554668) @@ -356,7 +358,8 @@ readable and extensible. It also includes a huge internal refactor to make the t * Fix passed count at test runner level (no reported issue) -[Unreleased]: https://github.com/ngarbezza/testy/compare/v6.1.0...HEAD +[Unreleased]: https://github.com/ngarbezza/testy/compare/v7.0.0...HEAD +[7.0.0]: https://github.com/ngarbezza/testy/compare/v6.1.0...v7.0.0 [6.1.0]: https://github.com/ngarbezza/testy/compare/v6.0.0...v6.1.0 [6.0.0]: https://github.com/ngarbezza/testy/compare/v5.1.0...v6.0.0 [5.1.0]: https://github.com/ngarbezza/testy/compare/v5.0.2...v5.1.0 diff --git a/package-lock.json b/package-lock.json index 6d531a25..e1526ccf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@pmoo/testy", - "version": "6.1.0", + "version": "7.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@pmoo/testy", - "version": "6.1.0", + "version": "7.0.0", "license": "MIT", "bin": { "testy": "bin/testy_cli.js" diff --git a/package.json b/package.json index 48823797..877c53c2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@pmoo/testy", - "version": "6.1.0", + "version": "7.0.0", "description": "A minimal testing framework, for educational purposes.", "homepage": "https://ngarbezza.github.io/testy/", "repository": {