Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: extend contributor roles #712

Merged
merged 4 commits into from
Jul 24, 2024
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.8.1] - 2024-07-23

- feat: extend contributor roles

## [1.8.0] - 2024-06-26

- chore: upgrade to Node.js v22
Expand Down
17 changes: 15 additions & 2 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"name": "European Union Public License 1.2",
"url": "https://spdx.org/licenses/EUPL-1.2.html"
},
"version": "1.8.0"
"version": "1.8.1"
},
"externalDocs": {
"description": "ARD Eventhub Documentation",
Expand Down Expand Up @@ -984,7 +984,20 @@
"role": {
"type": "string",
"example": "artist",
"enum": ["artist", "author", "composer", "performer"]
"enum": [
"artist",
"author",
"composer",
"performer",
"conductor",
"choir",
"leader",
"ensemble",
"orchestra",
"soloist",
"producer",
"engineer"
]
},
"normDb": {
"type": "object",
Expand Down
10 changes: 9 additions & 1 deletion openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ info:
license:
name: European Union Public License 1.2
url: https://spdx.org/licenses/EUPL-1.2.html
version: 1.8.0
version: 1.8.1
externalDocs:
description: ARD Eventhub Documentation
url: https://swrlab.github.io/ard-eventhub/
Expand Down Expand Up @@ -732,6 +732,14 @@ components:
- author
- composer
- performer
- conductor
- choir
- leader
- ensemble
- orchestra
- soloist
- producer
- engineer
normDb:
type: object
description: Reference to an entity in ARD's Norm-DB catalog
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ard-eventhub",
"version": "1.8.0",
"version": "1.8.1",
"description": "ARD system to distribute real-time (live) metadata for primarily radio broadcasts.",
"main": "./src/ingest/index.js",
"engines": {
Expand Down