diff --git a/CHANGELOG.md b/CHANGELOG.md index 89637bf..93c61a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. The changelog format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## [1.2.0][1.2.0] - 29-Mar-2022 + +#### Added + +- Adds Jenkinsfile for automatic builds targetting next + +#### Changed + +- Changes theme colors to dHealth branding +- Changes logos and links for dHealth Network +- Adds link to dHealth Developer Hub +- Fixes vulnerabilities as reported by dependabot + ## [1.0.0][1.0.0] - 20-May-2021 #### Changed @@ -13,4 +26,5 @@ The changelog format is based on [Keep a Changelog](https://keepachangelog.com/e - Some missing re-branding items for dHealth logos. +[1.2.0]: https://github.com/dhealthproject/dhealth-explorer/releases/tag/v1.2.0 [1.0.0]: https://github.com/dhealthproject/dhealth-explorer/releases/tag/v1.0.0 diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..09dbcdb --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,32 @@ +pipeline { + agent any + stages { + stage('Download dependencies') { + steps { + echo 'Downloading dependencies...' + sh 'npm install' + } + } + + stage('Run linter checks') { + steps { + echo 'Running linter checks...' + sh 'npm run lint' + } + } + + stage('Build software') { + steps { + echo 'Running compiler...' + sh 'npm run build' + } + } + + stage('Run unit tests') { + steps { + echo 'Running unit tests...' + sh 'npm run test' + } + } + } +} diff --git a/package-lock.json b/package-lock.json index 7bddd07..dde762c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "dhealth-explorer", - "version": "1.0.0", + "version": "1.2.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index c5fd784..a67b93d 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "dhealth-explorer", "description": "dHealth Explorer: Public Blockchain Infrastructure for Healthcare", "homepage": "https://github.com/dhealthproject/dhealth-explorer", - "version": "1.0.0", + "version": "1.2.0", "author": { "name": "Using Blockchain Ltd", "email": "info@ubc.digital", diff --git a/src/components/NemDescription.vue b/src/components/NemDescription.vue index 4fa4931..83f8dbd 100644 --- a/src/components/NemDescription.vue +++ b/src/components/NemDescription.vue @@ -19,8 +19,8 @@