diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f5e00516e..68ecc99154 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## 13.2.0 + ### New features - [#1906: Improved messaging when creating a prototype](https://github.com/alphagov/govuk-prototype-kit/pull/1906) diff --git a/internal_docs/releasing/releasing.md b/internal_docs/releasing/releasing.md index 7a10e8812b..9eb34ee84a 100644 --- a/internal_docs/releasing/releasing.md +++ b/internal_docs/releasing/releasing.md @@ -33,13 +33,13 @@ v8.0.0 // After implementing backwards incompatible changes 5. If the major version has changed make sure it's updated for the plugins in `GOVUKPrototypeKit.majorVersion` (JS) and `$govuk-prototype-kit-major-version` (SASS). -6. Update the [CHANGELOG.md](/CHANGELOG.md) by: +6. Update the [CHANGELOG.md](../../CHANGELOG.md) by: - adding the text of the release notes under the 'Unreleased' heading - changing the 'Unreleased' heading to the new version-number - for example, '12.0.1' - adding a new 'Unreleased' heading above the new version-number, so users will know where to add PRs to the changelog -7. Update the version number in [package.json](/package.json#L4). +7. Update the version number in [package.json](../../package.json). 8. Run `npm install` to update `npm-shrinkwrap.json`. diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index c9f909ea0e..7b9ce3f63c 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -1,12 +1,12 @@ { "name": "govuk-prototype-kit", - "version": "13.1.0", + "version": "13.2.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "govuk-prototype-kit", - "version": "13.1.0", + "version": "13.2.0", "dependencies": { "ansi-colors": "^4.1.3", "body-parser": "^1.20.1", @@ -43,7 +43,6 @@ "eslint-plugin-cypress": "^2.12.1", "extract-zip": "^2.0.1", "glob": "^8.0.3", - "isbinaryfile": "^5.0.0", "jest": "^29.3.1", "proper-lockfile": "^4.1.2", "standard": "^17.0.0", @@ -6574,18 +6573,6 @@ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" }, - "node_modules/isbinaryfile": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-5.0.0.tgz", - "integrity": "sha512-UDdnyGvMajJUWCkib7Cei/dvyJrrvo4FIrsvSFWdPpXSUorzXrDJ0S+X5Q4ZlasfPjca4yqCNNsjbCeiy8FFeg==", - "dev": true, - "engines": { - "node": ">= 14.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/gjtorikian/" - } - }, "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", @@ -16641,12 +16628,6 @@ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" }, - "isbinaryfile": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-5.0.0.tgz", - "integrity": "sha512-UDdnyGvMajJUWCkib7Cei/dvyJrrvo4FIrsvSFWdPpXSUorzXrDJ0S+X5Q4ZlasfPjca4yqCNNsjbCeiy8FFeg==", - "dev": true - }, "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", diff --git a/package.json b/package.json index fb8e7ae92d..865fababbc 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "govuk-prototype-kit", "description": "Rapidly create HTML prototypes of GOV.UK services", - "version": "13.1.0", + "version": "13.2.0", "engines": { "node": "^16.x || >= 18.x" },