diff --git a/CHANGELOG.md b/CHANGELOG.md index 4663d0de3eb..c3989c99cad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ +## [0.7.1](https://github.com/kingsdigitallab/corpus-building/compare/v0.7.0...v0.7.1) (2024-07-24) + + +### Bug Fixes + +* **frontend:** distinguish link from normal text ([a5efbdf](https://github.com/kingsdigitallab/corpus-building/commit/a5efbdf7a4875736ae2ca8965c3e419c5955892e)) +* **frontend:** remove unused icons ([f05eeb2](https://github.com/kingsdigitallab/corpus-building/commit/f05eeb2a4176a57133a0d43f63d64587c46a38e7)) + + +### Features + +* **frontend:** add transition on page change ([3e99b8b](https://github.com/kingsdigitallab/corpus-building/commit/3e99b8be1eb05fe3f0e69fd9f0ef3ce57318bfd7)) + # [0.7.0](https://github.com/kingsdigitallab/corpus-building/compare/v0.6.1...v0.7.0) (2024-07-23) diff --git a/frontend/package.json b/frontend/package.json index 5103ddbb07d..3f34350e069 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "@corpus-building/frontend", - "version": "0.7.0", + "version": "0.7.1", "private": true, "scripts": { "dev": "vite dev", diff --git a/package-lock.json b/package-lock.json index 2f1373e33e3..7e037e1966a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "corpus-building", - "version": "0.7.0", + "version": "0.7.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "corpus-building", - "version": "0.7.0", + "version": "0.7.1", "license": "MIT", "workspaces": [ "packages/*", diff --git a/package.json b/package.json index 8994f62e5fc..4596f0ed531 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "corpus-building", - "version": "0.7.0", + "version": "0.7.1", "description": "A monorepo for the CROSSREADS Corpus Building project.", "workspaces": [ "packages/*", diff --git a/packages/etl/package.json b/packages/etl/package.json index 7347c829c26..ee848553097 100644 --- a/packages/etl/package.json +++ b/packages/etl/package.json @@ -1,6 +1,6 @@ { "name": "@corpus-building/etl", - "version": "0.7.0", + "version": "0.7.1", "description": "An ETL (Extract, Transform, Load) package for processing TEI XML files. It extracts data from TEI XML documents, transforms them using XSLT stylesheets, and generates JSON and HTML outputs for use in the web application.", "main": "src/index.js", "type": "module",