From 9f5a7b65c2bde3a8b2c74ad45933e43c1e81f29a Mon Sep 17 00:00:00 2001 From: Nahuel Garbezza Date: Thu, 23 May 2024 07:04:41 -0300 Subject: [PATCH] :bookmark: release v7.1.0 :tada: --- CHANGELOG.md | 18 +++++++++++++++++- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 20 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dd7aecba..be3b6fad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Everything is released :tada: +## [7.1.0] - 2024-05-23 + +Some achievements to celebrate this release: 100 closed issues and 14 contributors (1 new!) + +### Added + +* [[feature] Add numeric assertions for numerical comparisons](https://github.com/ngarbezza/testy/issues/286): now we + have more semantic assertions to compare numbers, check out the readme/jsdoc for more info. Thank you, + [@beluamat29](https://github.com/beluamat29), for your first contribution! :tada: + +### Fixed + +* [[bug] passing tests even if the objects under comparison are not equal](https://github.com/ngarbezza/testy/issues/285): + this was a regression from a refactoring to add private methods in v7, it's not user-facing error. + ## [7.0.2] - 2024-03-04 ### Fixed @@ -372,7 +387,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/v7.0.2...HEAD +[Unreleased]: https://github.com/ngarbezza/testy/compare/v7.1.0...HEAD +[7.1.0]: https://github.com/ngarbezza/testy/compare/v7.0.2...v7.1.0 [7.0.2]: https://github.com/ngarbezza/testy/compare/v7.0.1...v7.0.2 [7.0.1]: https://github.com/ngarbezza/testy/compare/v7.0.0...v7.0.1 [7.0.0]: https://github.com/ngarbezza/testy/compare/v6.1.0...v7.0.0 diff --git a/package-lock.json b/package-lock.json index 1f70b99f..f51fbf10 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@pmoo/testy", - "version": "7.0.2", + "version": "7.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@pmoo/testy", - "version": "7.0.2", + "version": "7.1.0", "license": "MIT", "bin": { "testy": "bin/testy_cli.js" diff --git a/package.json b/package.json index 90d1bbbb..4fd0cf30 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@pmoo/testy", - "version": "7.0.2", + "version": "7.1.0", "description": "A minimal testing framework, for educational purposes.", "homepage": "https://ngarbezza.github.io/testy/", "repository": {