diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d8751b75ef..3d903a790d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ +# [0.6.0](https://github.com/kingsdigitallab/corpus-building/compare/v0.5.0...v0.6.0) (2024-07-18) + + +### Bug Fixes + +* **frontend:** change list to cards ([f41161f](https://github.com/kingsdigitallab/corpus-building/commit/f41161f6f16998a6f00c53226611d5e90f63837a)) +* **frontend:** left align the cards with the rest of the page ([1e06f6d](https://github.com/kingsdigitallab/corpus-building/commit/1e06f6d1f21ac5196cc4d0e85296de7f8e468761)) +* **frontend:** move component specific styles to the component ([876761c](https://github.com/kingsdigitallab/corpus-building/commit/876761c9a0277b29c093c1147d020fd5b13f66aa)) +* **frontend:** reduce the padding around main ([128cec3](https://github.com/kingsdigitallab/corpus-building/commit/128cec36b44440f173181c6da67714f3970bd6a3)) +* **frontend:** remove unused css selector ([4d0a246](https://github.com/kingsdigitallab/corpus-building/commit/4d0a246c5f097efe9f6ddebf8f763522d429ecc9)) + + +### Features + +* **frontend:** add component to render a link to an inscription ([0574cb7](https://github.com/kingsdigitallab/corpus-building/commit/0574cb738e4ac6fcefaa92c4e62c85cecd964acd)) +* **frontend:** add custom components to render the incriptions ([f2fbfe3](https://github.com/kingsdigitallab/corpus-building/commit/f2fbfe3eca807b9ba52f6e374568710c4e65a71a)) +* **frontend:** add font family ([f52c4ae](https://github.com/kingsdigitallab/corpus-building/commit/f52c4ae3b603eaed13e7e0e2ab4d437569dba395)) +* **frontend:** add map component ([4366696](https://github.com/kingsdigitallab/corpus-building/commit/43666967e06c15f204ffce3821c98c140ce51b13)) +* **frontend:** add table view ([7aef6da](https://github.com/kingsdigitallab/corpus-building/commit/7aef6da478830d5c75d061277b2975d0d8071d6d)) +* **frontend:** add toggle to show/hide the map ([cff2a47](https://github.com/kingsdigitallab/corpus-building/commit/cff2a476f3efc5e225ccfeb9e232933f001bb2b9)) +* **frontend:** style adjustments to better align with the mockups ([2e92d51](https://github.com/kingsdigitallab/corpus-building/commit/2e92d510a346ce075797cf094d55ae90a322a342)) + # [0.5.0](https://github.com/kingsdigitallab/corpus-building/compare/v0.4.1...v0.5.0) (2024-07-16) diff --git a/frontend/package.json b/frontend/package.json index d55abd1a334..4fea789de03 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "@corpus-building/frontend", - "version": "0.5.0", + "version": "0.6.0", "private": true, "scripts": { "dev": "vite dev", diff --git a/package-lock.json b/package-lock.json index 52908d80187..3fbf94d5129 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "corpus-building", - "version": "0.5.0", + "version": "0.6.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "corpus-building", - "version": "0.5.0", + "version": "0.6.0", "license": "MIT", "workspaces": [ "packages/*", diff --git a/package.json b/package.json index ab990365a9a..0ac4e175c39 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "corpus-building", - "version": "0.5.0", + "version": "0.6.0", "description": "A monorepo for the CROSSREADS Corpus Building project.", "workspaces": [ "packages/*", diff --git a/packages/etl/package.json b/packages/etl/package.json index ce593b7e21b..1896ac18633 100644 --- a/packages/etl/package.json +++ b/packages/etl/package.json @@ -1,6 +1,6 @@ { "name": "@corpus-building/etl", - "version": "0.5.0", + "version": "0.6.0", "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",