diff --git a/CHANGELOG.md b/CHANGELOG.md index dce80f7f243..8f0de92ffb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ +## [0.3.1](https://github.com/kingsdigitallab/corpus-building/compare/v0.3.0...v0.3.1) (2024-07-08) + + +### Features + +* **frontend:** update metadata fields after metadata restructure ([e0a6229](https://github.com/kingsdigitallab/corpus-building/commit/e0a6229a449db38e7315b8441e2dfd4e63b68017)) + + +### Performance Improvements + +* **etl:** simplify the metadata structure ([bcfd80d](https://github.com/kingsdigitallab/corpus-building/commit/bcfd80df3142b71ecfd465bcda8dd43aa4648377)) +* **frontend:** load individual inscription metadata file ([a7d1bc3](https://github.com/kingsdigitallab/corpus-building/commit/a7d1bc3e3c3c6fc2add66403ec90dd460b114d41)) + # [0.3.0](https://github.com/kingsdigitallab/corpus-building/compare/v0.2.0...v0.3.0) (2024-07-07) diff --git a/frontend/package.json b/frontend/package.json index 907ff4b5038..4660dea9b83 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "@corpus-building/frontend", - "version": "0.3.0", + "version": "0.3.1", "private": true, "scripts": { "dev": "vite dev", diff --git a/package-lock.json b/package-lock.json index 5b505d5b2c6..95a205cab91 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "corpus-building", - "version": "0.3.0", + "version": "0.3.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "corpus-building", - "version": "0.3.0", + "version": "0.3.1", "license": "MIT", "workspaces": [ "packages/*", diff --git a/package.json b/package.json index 32a42e1b5d6..ea0212d4ad4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "corpus-building", - "version": "0.3.0", + "version": "0.3.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 7c98766b4ea..e94b5516cc5 100644 --- a/packages/etl/package.json +++ b/packages/etl/package.json @@ -1,6 +1,6 @@ { "name": "@corpus-building/etl", - "version": "0.3.0", + "version": "0.3.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", "scripts": {