Skip to content

Commit

Permalink
Merge pull request #223 from ngarbezza/release-v6
Browse files Browse the repository at this point in the history
Release 6.0.0
  • Loading branch information
ngarbezza authored Nov 21, 2021
2 parents bbb7499 + dd4fb6e commit 70eb68c
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
node-version: [12.x, 14.x, 16.x]
steps:
- name: Checkout repo
uses: actions/checkout@v1
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Build NPM package, run lint analysis and tests
Expand All @@ -33,7 +33,7 @@ jobs:
-Dsonar.projectKey=ngarbezza_testy
-Dsonar.organization=ngarbezza
-Dsonar.projectName=Testy
-Dsonar.projectVersion=5.1.0
-Dsonar.projectVersion=6.0.0
-Dsonar.javascript.lcov.reportPaths=coverage/lcov.info
-Dsonar.coverage.exclusions=tests/**
env:
Expand Down
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

Everything is released :tada:

## [6.0.0] - 2021-11-21

### Breaking changes

* :boom: Node 12.x or higher is required. Support for Node 8.x and 10.x has dropped.
Expand All @@ -27,7 +31,10 @@ going forward. [#214](https://github.com/ngarbezza/testy/issues/214)

### Other improvements and cleanups

We now have a PR template, the branching model was simplified (before: your branch -> develop -> main, now: your branch -> main) and the test coverage was increased.
* We now have a PR template :tada:
* The branching model was simplified (before: `your-branch` -> `develop` -> `main`, now: `your-branch` -> `main`)
* Test coverage was increased
* Lint rules have been updated and now we check the code with ESLint v7

## [5.1.0] - 2021-01-13

Expand Down Expand Up @@ -287,7 +294,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/v5.1.0...HEAD
[Unreleased]: https://github.com/ngarbezza/testy/compare/v6.0.0...HEAD
[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
[5.0.2]: https://github.com/ngarbezza/testy/compare/v5.0.1...v5.0.2
[5.0.1]: https://github.com/ngarbezza/testy/compare/v5.0.0...v5.0.1
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pmoo/testy",
"version": "5.1.0",
"version": "6.0.0",
"description": "A minimal testing framework, for educational purposes.",
"homepage": "https://ngarbezza.github.io/testy/",
"repository": {
Expand All @@ -11,7 +11,7 @@
"url": "https://github.com/ngarbezza/testy/issues"
},
"engines": {
"node": ">= 8.*"
"node": ">= 12.*"
},
"main": "testy.js",
"scripts": {
Expand Down

0 comments on commit 70eb68c

Please sign in to comment.