From 16cc0ecdec0e81ade1e127218eb747662b632256 Mon Sep 17 00:00:00 2001 From: Glenn <33450392+glenn2223@users.noreply.github.com> Date: Tue, 14 Nov 2023 13:25:00 +0000 Subject: [PATCH] v2.0.1 # 2.0.1 - 2023-11-14 [Compare to previous release][comp:2.0.1] ### Fixed - Element is now correctly positioned when the window has scrolled ### Updated - `@topmarksdevelopment/position` to `1.0.1` [Changelog][cl:tp] ### Other - Added a test for window scrolling (nothing user-facing) - Fixed a test name (nothing user-facing) - Developer dependency bumps (nothing user-facing) [comp:2.0.1]: https://github.com/TopMarksDevelopment/JavaScript.HoverBox/compare/v2.0.0...v2.0.1 [cl:tp]: https://github.com/TopMarksDevelopment/JavaScript.Position/blob/main/CHANGELOG.md --- .github/workflows/publish.yml | 8 ++++---- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e725c25..7001667 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -6,12 +6,12 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # Setup .npmrc file to publish to npm - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: - node-version: '16.x' - registry-url: 'https://registry.npmjs.org' + node-version: '20' + - run: npm i tslib - run: npm ci --no-optional - run: npm publish --scope=@topmarksdevelopment --access public env: diff --git a/package-lock.json b/package-lock.json index 6d6fd9e..087dbb3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@topmarksdevelopment/hover-box", - "version": "2.0.0", + "version": "2.0.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@topmarksdevelopment/hover-box", - "version": "2.0.0", + "version": "2.0.1", "license": "MIT", "dependencies": { "@topmarksdevelopment/position": "^1.0.1" diff --git a/package.json b/package.json index 5012e3e..299eca2 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@topmarksdevelopment/hover-box", "description": "A compact tool to reveal information on hover", "author": "TopMarksDevelopment", - "version": "2.0.0", + "version": "2.0.1", "license": "MIT", "main": "lib/index.js", "types": "lib/index.d.ts",