diff --git a/CHANGELOG.md b/CHANGELOG.md index 8eb28bf08f..dd9e022241 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,11 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. -## [0.34.0]() +## [0.34.0](https://github.com/AliceO2Group/Bookkeeping/releases/tag/%40aliceo2%2Fbookkeeping%400.34.0) * Notable changes for users: * Run tags update is now integrated in the global run update * LHC Fill overview's run lists are now hyperlinks to the corresponding run detail page + * A spinner is displayed in each table when data is loading * Notable changes for developers: * `GET` RUNS API: * `tag` filter do not exist anymore, it is replaced by `tags` which is the list of tags texts to filter on diff --git a/lib/public/views/About/Overview/index.js b/lib/public/views/About/Overview/index.js index 805d4c48ba..23884ad785 100644 --- a/lib/public/views/About/Overview/index.js +++ b/lib/public/views/About/Overview/index.js @@ -21,7 +21,7 @@ import table from '../../../components/Table/index.js'; */ const aboutOverview = () => { const data = [ - { type: 'Bookkeeping', version: '0.33.0', hostname: '-', port: '4000' }, + { type: 'Bookkeeping', version: '0.34.0', hostname: '-', port: '4000' }, { type: 'NPM', version: '', hostname: '', port: '' }, ]; diff --git a/package-lock.json b/package-lock.json index 30c20925ed..128bfdb4b9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@aliceo2/bookkeeping", - "version": "0.33.0", + "version": "0.34.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@aliceo2/bookkeeping", - "version": "0.33.0", + "version": "0.34.0", "bundleDependencies": [ "@aliceo2/web-ui", "cls-hooked", diff --git a/package.json b/package.json index b7005ef8e3..88fca383b1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@aliceo2/bookkeeping", - "version": "0.33.0", + "version": "0.34.0", "author": "ALICEO2", "scripts": { "coverage": "nyc npm test && npm run coverage:report",