Skip to content

Commit

Permalink
release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandra Mierz committed Jun 22, 2021
1 parent e152b4e commit 234cbbf
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,18 @@
All notable changes to this project will be documented in this file.

## [Unreleased]


## [1.1.0] - 2021-06-22
### Added
- query ORCID for person and current employees at ROR organization
- refactor all queries to follow three steps: source, extraction, mapping to vivo-rdf
- check GraphQL queries for response code 200 and additionally if response body contains error messages (no data)
- make all controller use HTTP-Get requests
- centralize input validation
- export to VIVO in chunks
- simplify error handling
- document methods in swagger-UI and remove default responses
- document methods in swagger-UI and remove response section

## [Renamed Project] - 2021-05-25
As new datsources were integrated and the name datacitecommons2vivo was not reflecting
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@

<groupId>eu.tib</groupId>
<artifactId>generate2vivo</artifactId>
<version>1.1.0-SNAPSHOT</version>
<description>Data Ingest from different datasources like Datacite Commons, ROR or ORCID to VIVO</description>
<version>1.1.0</version>
<description>Extensible Data Ingest Tool for VIVO. Contains data sources like Datacite Commons, ORCID and ROR.</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/eu/tib/swagger/SwaggerConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ public Docket productApi() {
private ApiInfo apiInfo() {
return new ApiInfoBuilder()
.title("generate2vivo")
.description("Data Ingest from different datasources like Datacite Commons, ROR or ORCID to VIVO.")
.version("1.1.0-SNAPSHOT")
.description("Extensible Data Ingest Tool for VIVO. Contains data sources like Datacite Commons, ORCID and ROR.")
.version("1.1.0")
.build();
}
}

0 comments on commit 234cbbf

Please sign in to comment.