Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

---

## [2.5.0] - 2026-04-22

### Added

- Add next/previous buttons to the search bar for easier navigation through search results
- Add copy/paste support for schema diagrams

## [2.4.0] - 2026-04-15

### Added
Expand Down
7 changes: 4 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,10 @@ No specific format is enforced, but commit messages should start with a verb and
## Releases

Releases are managed manually by maintainers. When a set of changes on `develop` is deemed stable, a maintainer will:
1. Update the version in `meta_configurator/package.json`
2. Add a changelog entry
3. Merge `develop` into `main`
1. Update the version in `meta_configurator/package.json` and `codemeta.json`.
2. Run `npm install` to update the lock file version.
3. Add a changelog entry to `CHANGELOG.md` following the format defined in that file
4. Merge `develop` into `main`

---

Expand Down
2 changes: 1 addition & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
"Browser",
"Web"
],
"version": "2.0.0",
"version": "2.5.0",
"contIntegration": "https://github.com/MetaConfigurator/meta-configurator/actions",
"codemeta:continuousIntegration": {
"id": "https://github.com/MetaConfigurator/meta-configurator/actions"
Expand Down
4 changes: 2 additions & 2 deletions meta_configurator/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion meta_configurator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "meta-configurator",
"version": "2.4.0",
"version": "2.5.0",
"private": true,
"scripts": {
"dev": "vite",
Expand Down
Loading