diff --git a/CHANGELOG.md b/CHANGELOG.md index 22a0c824c1e..6e734494715 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v2.61.3 - 2024-06-20 + +[Full Changelog](https://github.com/ORCID/ORCID-Source/compare/v2.61.2...v2.61.3) + ## v2.61.2 - 2024-06-19 [Full Changelog](https://github.com/ORCID/ORCID-Source/compare/v2.61.1...v2.61.2) diff --git a/orcid-core/src/main/resources/i18n/identifiers_en.properties b/orcid-core/src/main/resources/i18n/identifiers_en.properties index f9610cdd636..b8a8b68bab9 100644 --- a/orcid-core/src/main/resources/i18n/identifiers_en.properties +++ b/orcid-core/src/main/resources/i18n/identifiers_en.properties @@ -50,4 +50,4 @@ org.orcid.jaxb.model.record.WorkExternalIdentifierType.proposal-id=Proposal ID org.orcid.jaxb.model.record.WorkExternalIdentifierType.cstr=cstr\: Science and technology resource identification org.orcid.jaxb.model.record.WorkExternalIdentifierType.k10plus=k10plus\: K10plus org.orcid.jaxb.model.record.WorkExternalIdentifierType.cgn=cgn\: Culturegraph Number -org.orcid.jaxb.model.record.WorkExternalIdentifierType.raid=raid\: RAiD is an identifier for research projects and sub-projects or activies within such projects. +org.orcid.jaxb.model.record.WorkExternalIdentifierType.raid=raid\: Research Activity Identifier \ No newline at end of file diff --git a/orcid-persistence/src/main/resources/db/updates/identifier-types/identifier-type-52-RAiD.xml b/orcid-persistence/src/main/resources/db/updates/identifier-types/identifier-type-52-RAiD.xml index 510fe916951..b526ad29392 100644 --- a/orcid-persistence/src/main/resources/db/updates/identifier-types/identifier-type-52-RAiD.xml +++ b/orcid-persistence/src/main/resources/db/updates/identifier-types/identifier-type-52-RAiD.xml @@ -5,7 +5,7 @@ select count(*) from identifier_type where id_name='RAiD'; - INSERT INTO identifier_type (id, id_name, id_resolution_prefix, id_deprecated, date_created, last_modified, primary_use) VALUES (52, 'RAiD', 'https://raid.org/', false, now(), now(), 'professional-activities'); + INSERT INTO identifier_type (id, id_name, id_resolution_prefix, id_deprecated, date_created, last_modified, primary_use) VALUES (52, 'RAiD', 'https://raid.org/', false, now(), now(), 'work'); UPDATE identifier_type SET "case_sensitive" = false WHERE id_name = 'RAiD'; \ No newline at end of file