From 6251c281e914832c53c1ebe106b79221b77154dc Mon Sep 17 00:00:00 2001 From: Felix Mosheev <9304194+felixmosh@users.noreply.github.com> Date: Wed, 2 Jun 2021 16:27:44 +0300 Subject: [PATCH] Release 3.2.1 --- CHANGELOG.md | 8 ++++++++ package.json | 12 +++++++++--- packages/api/package.json | 2 +- packages/express/package.json | 6 +++--- packages/fastify/package.json | 6 +++--- packages/hapi/package.json | 6 +++--- packages/koa/package.json | 6 +++--- packages/ui/package.json | 4 ++-- 8 files changed, 32 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d5cd025..559e2b40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,17 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). +#### [v3.2.1](https://github.com/felixmosh/bull-board/compare/v3.2.0...v3.2.1) + +- Add fav icon & change the logo to be more consistent between OS's [`#288`](https://github.com/felixmosh/bull-board/pull/288) +- Add release hooks [`a995359`](https://github.com/felixmosh/bull-board/commit/a995359887758f735476850eda754d7d3f6c8a7f) + #### [v3.2.0](https://github.com/felixmosh/bull-board/compare/v3.1.0...v3.2.0) +> 2 June 2021 + - Feat: Add pagination [`#287`](https://github.com/felixmosh/bull-board/pull/287) +- Release 3.2.0 [`9aabd7c`](https://github.com/felixmosh/bull-board/commit/9aabd7c8077710e4e0c666a1a27c0ab1a2a83cd5) - Add koa example to readme [`762015b`](https://github.com/felixmosh/bull-board/commit/762015ba8838201613a630880ae920fc59ee349c) - Add koa example to readme [`5cc2dd6`](https://github.com/felixmosh/bull-board/commit/5cc2dd62eb39a38bd0244c3402302db72433806e) diff --git a/package.json b/package.json index 55b4d42b..b715bde5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/root", - "version": "3.2.0", + "version": "3.2.1", "private": true, "description": "Bull queue UI for inspecting jobs", "keywords": [ @@ -82,8 +82,14 @@ "changelog": "npx auto-changelog --stdout --commit-limit false -u --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs" }, "hooks": { - "before:init": ["yarn lint", "yarn test"], - "after:bump": ["npx auto-changelog -p", "yarn build"] + "before:init": [ + "yarn lint", + "yarn test" + ], + "after:bump": [ + "npx auto-changelog -p", + "yarn build" + ] }, "github": { "release": true diff --git a/packages/api/package.json b/packages/api/package.json index 2602fef5..d09d95b0 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/api", - "version": "3.2.0", + "version": "3.2.1", "description": "Core server APIs of bull-board", "keywords": [ "bull", diff --git a/packages/express/package.json b/packages/express/package.json index ea37a133..1a5cee14 100644 --- a/packages/express/package.json +++ b/packages/express/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/express", - "version": "3.2.0", + "version": "3.2.1", "description": "Express.js server adapter for Bull-Board package", "keywords": [ "bull", @@ -27,8 +27,8 @@ "build": "tsc" }, "dependencies": { - "@bull-board/api": "3.2.0", - "@bull-board/ui": "3.2.0", + "@bull-board/api": "3.2.1", + "@bull-board/ui": "3.2.1", "ejs": "3.1.6", "express": "4.17.1" }, diff --git a/packages/fastify/package.json b/packages/fastify/package.json index 8caee8b1..decdc157 100644 --- a/packages/fastify/package.json +++ b/packages/fastify/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/fastify", - "version": "3.2.0", + "version": "3.2.1", "description": "Fastify.js server adapter for Bull-Board package", "keywords": [ "bull", @@ -27,8 +27,8 @@ "build": "tsc" }, "dependencies": { - "@bull-board/api": "3.2.0", - "@bull-board/ui": "3.2.0", + "@bull-board/api": "3.2.1", + "@bull-board/ui": "3.2.1", "ejs": "^3.1.6", "fastify-static": "^4.2.2", "point-of-view": "^4.14.0" diff --git a/packages/hapi/package.json b/packages/hapi/package.json index de34866c..e415009e 100644 --- a/packages/hapi/package.json +++ b/packages/hapi/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/hapi", - "version": "3.2.0", + "version": "3.2.1", "description": "Hapi.js server adapter for Bull-Board package", "keywords": [ "bull", @@ -27,8 +27,8 @@ "build": "tsc" }, "dependencies": { - "@bull-board/api": "3.2.0", - "@bull-board/ui": "3.2.0", + "@bull-board/api": "3.2.1", + "@bull-board/ui": "3.2.1", "@hapi/inert": "^6.0.3", "@hapi/vision": "^6.1.0", "ejs": "^3.1.6" diff --git a/packages/koa/package.json b/packages/koa/package.json index d0c3b9a8..61e8f658 100644 --- a/packages/koa/package.json +++ b/packages/koa/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/koa", - "version": "3.2.0", + "version": "3.2.1", "description": "Koa.js server adapter for Bull-Board package", "keywords": [ "bull", @@ -27,8 +27,8 @@ "build": "tsc" }, "dependencies": { - "@bull-board/api": "3.2.0", - "@bull-board/ui": "3.2.0", + "@bull-board/api": "3.2.1", + "@bull-board/ui": "3.2.1", "ejs": "^3.1.6", "koa": "^2.13.1", "koa-mount": "^4.0.0", diff --git a/packages/ui/package.json b/packages/ui/package.json index 533be4e2..400ccc13 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@bull-board/ui", - "version": "3.2.0", + "version": "3.2.1", "description": "Bull-Board's UI package", "keywords": [ "bull", @@ -26,7 +26,7 @@ "build": "NODE_ENV=production webpack --mode=production" }, "dependencies": { - "@bull-board/api": "3.2.0", + "@bull-board/api": "3.2.1", "react-paginate": "^7.1.3" }, "devDependencies": {