bolognese 0.4.3 → 2.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (326) hide show
  1. checksums.yaml +5 -5
  2. data/.github/workflows/build.yml +9 -0
  3. data/.github/workflows/changelog.yml +36 -0
  4. data/.github/workflows/ci.yml +22 -0
  5. data/.github/workflows/pull-request.yml +9 -0
  6. data/.github/workflows/release.yml +32 -0
  7. data/.gitignore +4 -0
  8. data/.rubocop.yml +658 -0
  9. data/CHANGELOG.md +1864 -0
  10. data/CITATION +17 -0
  11. data/Gemfile +1 -1
  12. data/Gemfile.lock +250 -98
  13. data/README.md +963 -21
  14. data/Rakefile +1 -0
  15. data/bin/bolognese +5 -1
  16. data/bolognese.gemspec +33 -21
  17. data/lib/bolognese/array.rb +13 -0
  18. data/lib/bolognese/author_utils.rb +147 -33
  19. data/lib/bolognese/citeproc_extensions.rb +48 -0
  20. data/lib/bolognese/cli.rb +28 -21
  21. data/lib/bolognese/datacite_utils.rb +292 -104
  22. data/lib/bolognese/doi_utils.rb +44 -20
  23. data/lib/bolognese/metadata.rb +249 -23
  24. data/lib/bolognese/metadata_utils.rb +228 -0
  25. data/lib/bolognese/pubmed.rb +2 -0
  26. data/lib/bolognese/readers/bibtex_reader.rb +100 -0
  27. data/lib/bolognese/readers/citeproc_reader.rb +125 -0
  28. data/lib/bolognese/readers/codemeta_reader.rb +108 -0
  29. data/lib/bolognese/readers/crosscite_reader.rb +17 -0
  30. data/lib/bolognese/readers/crossref_reader.rb +413 -0
  31. data/lib/bolognese/readers/datacite_json_reader.rb +17 -0
  32. data/lib/bolognese/readers/datacite_reader.rb +341 -0
  33. data/lib/bolognese/readers/npm_reader.rb +115 -0
  34. data/lib/bolognese/readers/ris_reader.rb +114 -0
  35. data/lib/bolognese/readers/schema_org_reader.rb +264 -0
  36. data/lib/bolognese/string.rb +3 -1
  37. data/lib/bolognese/utils.rb +1463 -25
  38. data/lib/bolognese/version.rb +1 -1
  39. data/lib/bolognese/whitelist_scrubber.rb +47 -0
  40. data/lib/bolognese/writers/bibtex_writer.rb +32 -0
  41. data/lib/bolognese/writers/citation_writer.rb +14 -0
  42. data/lib/bolognese/writers/citeproc_writer.rb +11 -0
  43. data/lib/bolognese/writers/codemeta_writer.rb +29 -0
  44. data/lib/bolognese/writers/crosscite_writer.rb +11 -0
  45. data/lib/bolognese/writers/crossref_writer.rb +11 -0
  46. data/lib/bolognese/writers/csv_writer.rb +24 -0
  47. data/lib/bolognese/writers/datacite_json_writer.rb +13 -0
  48. data/lib/bolognese/writers/datacite_writer.rb +12 -0
  49. data/lib/bolognese/writers/jats_writer.rb +137 -0
  50. data/lib/bolognese/writers/rdf_xml_writer.rb +11 -0
  51. data/lib/bolognese/writers/ris_writer.rb +29 -0
  52. data/lib/bolognese/writers/schema_org_writer.rb +55 -0
  53. data/lib/bolognese/writers/turtle_writer.rb +11 -0
  54. data/lib/bolognese.rb +19 -5
  55. data/package.json +12 -0
  56. data/resources/2008/09/xsd.xsl +997 -0
  57. data/resources/datacite-contributorType-v4.xsd +35 -0
  58. data/resources/datacite-dateType-v4.xsd +25 -0
  59. data/resources/datacite-descriptionType-v4.xsd +19 -0
  60. data/resources/datacite-funderIdentifierType-v4.xsd +15 -0
  61. data/resources/datacite-nameType-v4.xsd +10 -0
  62. data/resources/datacite-relatedIdentifierType-v4.xsd +34 -0
  63. data/resources/datacite-relationType-v4.xsd +49 -0
  64. data/resources/datacite-resourceType-v4.xsd +28 -0
  65. data/resources/datacite-titleType-v4.xsd +14 -0
  66. data/resources/kernel-2.1/include/datacite-contributorType-v1.1.xsd +22 -0
  67. data/resources/kernel-2.1/include/datacite-contributorType-v2.xsd +3 -0
  68. data/resources/kernel-2.1/include/datacite-dateType-v1.1.xsd +31 -0
  69. data/resources/kernel-2.1/include/datacite-dateType-v2.xsd +3 -0
  70. data/resources/kernel-2.1/include/datacite-descriptionType-v1.1.xsd +14 -0
  71. data/resources/kernel-2.1/include/datacite-descriptionType-v2.xsd +3 -0
  72. data/resources/kernel-2.1/include/datacite-relatedIdentifierType-v1.1.xsd +24 -0
  73. data/resources/kernel-2.1/include/datacite-relatedIdentifierType-v2.xsd +3 -0
  74. data/resources/kernel-2.1/include/datacite-relationType-v1.1.xsd +29 -0
  75. data/resources/kernel-2.1/include/datacite-relationType-v2.xsd +3 -0
  76. data/resources/kernel-2.1/include/datacite-resourceType-v1.1.xsd +22 -0
  77. data/resources/kernel-2.1/include/datacite-resourceType-v2.xsd +3 -0
  78. data/resources/kernel-2.1/include/datacite-titleType-v1.1.xsd +11 -0
  79. data/resources/kernel-2.1/include/datacite-titleType-v2.xsd +3 -0
  80. data/resources/kernel-2.1/metadata.xsd +315 -0
  81. data/resources/kernel-2.2/include/datacite-contributorType-v2.xsd +29 -0
  82. data/resources/kernel-2.2/include/datacite-dateType-v2.xsd +21 -0
  83. data/resources/kernel-2.2/include/datacite-descriptionType-v2.xsd +15 -0
  84. data/resources/kernel-2.2/include/datacite-relatedIdentifierType-v2.xsd +25 -0
  85. data/resources/kernel-2.2/include/datacite-relationType-v2.xsd +29 -0
  86. data/resources/kernel-2.2/include/datacite-resourceType-v2.xsd +23 -0
  87. data/resources/kernel-2.2/include/datacite-titleType-v2.xsd +10 -0
  88. data/resources/kernel-2.2/metadata.xsd +316 -0
  89. data/resources/kernel-3/include/datacite-contributorType-v3.1.xsd +35 -0
  90. data/resources/kernel-3/include/datacite-dateType-v3.xsd +21 -0
  91. data/resources/kernel-3/include/datacite-descriptionType-v3.xsd +17 -0
  92. data/resources/kernel-3/include/datacite-relatedIdentifierType-v3.1.xsd +30 -0
  93. data/resources/kernel-3/include/datacite-relationType-v3.1.xsd +38 -0
  94. data/resources/kernel-3/include/datacite-resourceType-v3.xsd +26 -0
  95. data/resources/kernel-3/include/datacite-titleType-v3.xsd +12 -0
  96. data/resources/kernel-3/include/xml.xsd +286 -0
  97. data/resources/kernel-3/metadata.xsd +380 -0
  98. data/resources/kernel-3.0/include/datacite-contributorType-v3.xsd +33 -0
  99. data/resources/kernel-3.0/include/datacite-dateType-v3.xsd +21 -0
  100. data/resources/kernel-3.0/include/datacite-descriptionType-v3.xsd +17 -0
  101. data/resources/kernel-3.0/include/datacite-relatedIdentifierType-v3.xsd +27 -0
  102. data/resources/kernel-3.0/include/datacite-relationType-v3.xsd +33 -0
  103. data/resources/kernel-3.0/include/datacite-resourceType-v3.xsd +26 -0
  104. data/resources/kernel-3.0/include/datacite-titleType-v3.xsd +12 -0
  105. data/resources/kernel-3.0/include/xml.xsd +286 -0
  106. data/resources/kernel-3.0/metadata.xsd +377 -0
  107. data/resources/kernel-3.1/include/datacite-contributorType-v3.1.xsd +35 -0
  108. data/resources/kernel-3.1/include/datacite-dateType-v3.xsd +21 -0
  109. data/resources/kernel-3.1/include/datacite-descriptionType-v3.xsd +17 -0
  110. data/resources/kernel-3.1/include/datacite-relatedIdentifierType-v3.1.xsd +30 -0
  111. data/resources/kernel-3.1/include/datacite-relationType-v3.1.xsd +38 -0
  112. data/resources/kernel-3.1/include/datacite-resourceType-v3.xsd +26 -0
  113. data/resources/kernel-3.1/include/datacite-titleType-v3.xsd +12 -0
  114. data/resources/kernel-3.1/include/xml.xsd +286 -0
  115. data/resources/kernel-3.1/metadata.xsd +380 -0
  116. data/resources/kernel-4/include/datacite-contributorType-v4.xsd +37 -0
  117. data/resources/kernel-4/include/datacite-dateType-v4.xsd +27 -0
  118. data/resources/kernel-4/include/datacite-descriptionType-v4.xsd +19 -0
  119. data/resources/kernel-4/include/datacite-funderIdentifierType-v4.xsd +16 -0
  120. data/resources/kernel-4/include/datacite-nameType-v4.xsd +10 -0
  121. data/resources/kernel-4/include/datacite-numberType-v4.xsd +12 -0
  122. data/resources/kernel-4/include/datacite-relatedIdentifierType-v4.xsd +39 -0
  123. data/resources/kernel-4/include/datacite-relationType-v4.xsd +59 -0
  124. data/resources/kernel-4/include/datacite-resourceType-v4.xsd +52 -0
  125. data/resources/kernel-4/include/datacite-titleType-v4.xsd +14 -0
  126. data/resources/kernel-4/include/xml.xsd +286 -0
  127. data/resources/kernel-4/metadata.xsd +715 -0
  128. data/resources/kernel-4.0/include/datacite-contributorType-v4.xsd +1 -1
  129. data/resources/kernel-4.0/include/datacite-dateType-v4.xsd +1 -1
  130. data/resources/kernel-4.0/include/datacite-descriptionType-v4.xsd +1 -1
  131. data/resources/kernel-4.0/include/datacite-funderIdentifierType-v4.xsd +1 -1
  132. data/resources/kernel-4.0/include/datacite-relatedIdentifierType-v4.xsd +1 -1
  133. data/resources/kernel-4.0/include/datacite-relationType-v4.xsd +1 -1
  134. data/resources/kernel-4.0/include/datacite-resourceType-v4.xsd +1 -1
  135. data/resources/kernel-4.0/include/datacite-titleType-v4.xsd +1 -1
  136. data/resources/kernel-4.0/include/xml.xsd +286 -0
  137. data/resources/kernel-4.0/metadata.xsd +2 -2
  138. data/resources/kernel-4.1/include/datacite-contributorType-v4.xsd +35 -0
  139. data/resources/kernel-4.1/include/datacite-dateType-v4.1.xsd +23 -0
  140. data/resources/kernel-4.1/include/datacite-descriptionType-v4.xsd +19 -0
  141. data/resources/kernel-4.1/include/datacite-funderIdentifierType-v4.xsd +15 -0
  142. data/resources/kernel-4.1/include/datacite-nameType-v4.1.xsd +10 -0
  143. data/resources/kernel-4.1/include/datacite-relatedIdentifierType-v4.xsd +32 -0
  144. data/resources/kernel-4.1/include/datacite-relationType-v4.1.xsd +46 -0
  145. data/resources/kernel-4.1/include/datacite-resourceType-v4.1.xsd +28 -0
  146. data/resources/kernel-4.1/include/datacite-titleType-v4.xsd +14 -0
  147. data/resources/kernel-4.1/include/xml.xsd +286 -0
  148. data/resources/kernel-4.1/metadata.xsd +483 -0
  149. data/resources/kernel-4.2/include/datacite-contributorType-v4.xsd +35 -0
  150. data/resources/kernel-4.2/include/datacite-dateType-v4.xsd +25 -0
  151. data/resources/kernel-4.2/include/datacite-descriptionType-v4.xsd +19 -0
  152. data/resources/kernel-4.2/include/datacite-funderIdentifierType-v4.xsd +15 -0
  153. data/resources/kernel-4.2/include/datacite-nameType-v4.xsd +10 -0
  154. data/resources/kernel-4.2/include/datacite-relatedIdentifierType-v4.xsd +34 -0
  155. data/resources/kernel-4.2/include/datacite-relationType-v4.xsd +49 -0
  156. data/resources/kernel-4.2/include/datacite-resourceType-v4.xsd +28 -0
  157. data/resources/kernel-4.2/include/datacite-titleType-v4.xsd +14 -0
  158. data/resources/kernel-4.2/include/xml.xsd +286 -0
  159. data/resources/kernel-4.2/metadata.xsd +479 -0
  160. data/resources/kernel-4.3/include/datacite-contributorType-v4.xsd +35 -0
  161. data/resources/kernel-4.3/include/datacite-dateType-v4.xsd +25 -0
  162. data/resources/kernel-4.3/include/datacite-descriptionType-v4.xsd +19 -0
  163. data/resources/kernel-4.3/include/datacite-funderIdentifierType-v4.xsd +16 -0
  164. data/resources/kernel-4.3/include/datacite-nameType-v4.xsd +10 -0
  165. data/resources/kernel-4.3/include/datacite-relatedIdentifierType-v4.xsd +34 -0
  166. data/resources/kernel-4.3/include/datacite-relationType-v4.xsd +49 -0
  167. data/resources/kernel-4.3/include/datacite-resourceType-v4.xsd +28 -0
  168. data/resources/kernel-4.3/include/datacite-titleType-v4.xsd +14 -0
  169. data/resources/kernel-4.3/include/xml.xsd +286 -0
  170. data/resources/kernel-4.3/metadata.xsd +515 -0
  171. data/resources/kernel-4.4/include/datacite-contributorType-v4.xsd +35 -0
  172. data/resources/kernel-4.4/include/datacite-dateType-v4.xsd +25 -0
  173. data/resources/kernel-4.4/include/datacite-descriptionType-v4.xsd +19 -0
  174. data/resources/kernel-4.4/include/datacite-funderIdentifierType-v4.xsd +16 -0
  175. data/resources/kernel-4.4/include/datacite-nameType-v4.xsd +10 -0
  176. data/resources/kernel-4.4/include/datacite-numberType-v4.xsd +12 -0
  177. data/resources/kernel-4.4/include/datacite-relatedIdentifierType-v4.xsd +34 -0
  178. data/resources/kernel-4.4/include/datacite-relationType-v4.xsd +51 -0
  179. data/resources/kernel-4.4/include/datacite-resourceType-v4.xsd +43 -0
  180. data/resources/kernel-4.4/include/datacite-titleType-v4.xsd +14 -0
  181. data/resources/kernel-4.4/include/xml.xsd +286 -0
  182. data/resources/kernel-4.4/metadata.xsd +707 -0
  183. data/resources/kernel-4.5/include/datacite-contributorType-v4.xsd +35 -0
  184. data/resources/kernel-4.5/include/datacite-dateType-v4.xsd +25 -0
  185. data/resources/kernel-4.5/include/datacite-descriptionType-v4.xsd +19 -0
  186. data/resources/kernel-4.5/include/datacite-funderIdentifierType-v4.xsd +16 -0
  187. data/resources/kernel-4.5/include/datacite-nameType-v4.xsd +10 -0
  188. data/resources/kernel-4.5/include/datacite-numberType-v4.xsd +12 -0
  189. data/resources/kernel-4.5/include/datacite-relatedIdentifierType-v4.xsd +34 -0
  190. data/resources/kernel-4.5/include/datacite-relationType-v4.xsd +53 -0
  191. data/resources/kernel-4.5/include/datacite-resourceType-v4.xsd +45 -0
  192. data/resources/kernel-4.5/include/datacite-titleType-v4.xsd +14 -0
  193. data/resources/kernel-4.5/include/xml.xsd +286 -0
  194. data/resources/kernel-4.5/metadata.xsd +711 -0
  195. data/resources/kernel-4.6/include/datacite-contributorType-v4.xsd +37 -0
  196. data/resources/kernel-4.6/include/datacite-dateType-v4.xsd +27 -0
  197. data/resources/kernel-4.6/include/datacite-descriptionType-v4.xsd +19 -0
  198. data/resources/kernel-4.6/include/datacite-funderIdentifierType-v4.xsd +16 -0
  199. data/resources/kernel-4.6/include/datacite-nameType-v4.xsd +10 -0
  200. data/resources/kernel-4.6/include/datacite-numberType-v4.xsd +12 -0
  201. data/resources/kernel-4.6/include/datacite-relatedIdentifierType-v4.xsd +37 -0
  202. data/resources/kernel-4.6/include/datacite-relationType-v4.xsd +57 -0
  203. data/resources/kernel-4.6/include/datacite-resourceType-v4.xsd +49 -0
  204. data/resources/kernel-4.6/include/datacite-titleType-v4.xsd +14 -0
  205. data/resources/kernel-4.6/include/xml.xsd +286 -0
  206. data/resources/kernel-4.6/metadata.xsd +712 -0
  207. data/resources/kernel-4.7/include/datacite-contributorType-v4.xsd +37 -0
  208. data/resources/kernel-4.7/include/datacite-dateType-v4.xsd +27 -0
  209. data/resources/kernel-4.7/include/datacite-descriptionType-v4.xsd +19 -0
  210. data/resources/kernel-4.7/include/datacite-funderIdentifierType-v4.xsd +16 -0
  211. data/resources/kernel-4.7/include/datacite-nameType-v4.xsd +10 -0
  212. data/resources/kernel-4.7/include/datacite-numberType-v4.xsd +12 -0
  213. data/resources/kernel-4.7/include/datacite-relatedIdentifierType-v4.xsd +39 -0
  214. data/resources/kernel-4.7/include/datacite-relationType-v4.xsd +59 -0
  215. data/resources/kernel-4.7/include/datacite-resourceType-v4.xsd +52 -0
  216. data/resources/kernel-4.7/include/datacite-titleType-v4.xsd +14 -0
  217. data/resources/kernel-4.7/include/xml.xsd +286 -0
  218. data/resources/kernel-4.7/metadata.xsd +715 -0
  219. data/resources/oecd/dfg-mappings.json +1866 -0
  220. data/resources/oecd/for-mappings.json +1101 -0
  221. data/resources/oecd/fos-mappings.json +198 -0
  222. data/resources/schema_org/jsonldcontext.json +7477 -0
  223. data/resources/spdx/licenses.json +5297 -0
  224. data/resources/xml.xsd +286 -0
  225. metadata +466 -179
  226. data/.travis.yml +0 -23
  227. data/lib/bolognese/crossref.rb +0 -233
  228. data/lib/bolognese/datacite.rb +0 -176
  229. data/lib/bolognese/date_utils.rb +0 -48
  230. data/lib/bolognese/github.rb +0 -106
  231. data/lib/bolognese/orcid.rb +0 -24
  232. data/lib/bolognese/schema_org.rb +0 -170
  233. data/spec/cli_spec.rb +0 -56
  234. data/spec/crossref_spec.rb +0 -190
  235. data/spec/datacite_spec.rb +0 -93
  236. data/spec/datacite_utils_spec.rb +0 -159
  237. data/spec/doi_utils_spec.rb +0 -89
  238. data/spec/fixtures/crossref.xml +0 -742
  239. data/spec/fixtures/datacite.xml +0 -40
  240. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/read/crossref/as_crossref.yml +0 -760
  241. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/read/crossref/as_datacite.yml +0 -1476
  242. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/read/crossref/as_schema_org.yml +0 -1476
  243. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/read/datacite/as_datacite.yml +0 -214
  244. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/read/datacite/as_schema_org.yml +0 -384
  245. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/read/schema_org/as_datacite.yml +0 -653
  246. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/read/schema_org/as_schema_org.yml +0 -653
  247. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/doi_registration_agency/crossref.yml +0 -971
  248. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/doi_registration_agency/datacite.yml +0 -971
  249. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/doi_registration_agency/medra.yml +0 -971
  250. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/doi_registration_agency/not_found.yml +0 -971
  251. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata/DOI_with_ORCID_ID.yml +0 -506
  252. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata/DOI_with_SICI_DOI.yml +0 -214
  253. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata/DOI_with_data_citation.yml +0 -901
  254. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata/date_in_future.yml +0 -305
  255. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata/journal_article.yml +0 -1080
  256. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata/not_found_error.yml +0 -183
  257. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata/posted_content.yml +0 -389
  258. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata_as_datacite_xml/DOI_with_ORCID_ID.yml +0 -506
  259. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata_as_datacite_xml/DOI_with_data_citation.yml +0 -901
  260. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata_as_datacite_xml/with_ORCID_ID.yml +0 -366
  261. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata_as_datacite_xml/with_data_citation.yml +0 -719
  262. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata_as_datacite_xml/with_editor.yml +0 -930
  263. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata_as_string/DOI_with_data_citation.yml +0 -719
  264. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/normalize_doi/SICI_doi.yml +0 -930
  265. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/normalize_doi/doi.yml +0 -930
  266. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/normalize_doi/doi_from_url_without_doi_proxy.yml +0 -930
  267. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/normalize_doi/doi_prefix_too_long.yml +0 -930
  268. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/normalize_doi/doi_prefix_with_string.yml +0 -930
  269. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/normalize_doi/doi_with_protocol.yml +0 -930
  270. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/normalize_doi/dx_doi_org_url.yml +0 -930
  271. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/normalize_doi/https_url.yml +0 -930
  272. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/normalize_doi/not_valid_doi_prefix.yml +0 -930
  273. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/normalize_ids/doi.yml +0 -930
  274. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/normalize_ids/url.yml +0 -930
  275. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/normalize_url/doi.yml +0 -930
  276. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/normalize_url/url.yml +0 -930
  277. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/parse_attribute/array.yml +0 -930
  278. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/parse_attribute/hash.yml +0 -930
  279. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/parse_attribute/nil.yml +0 -930
  280. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/parse_attribute/string.yml +0 -930
  281. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/parse_attributes/array.yml +0 -930
  282. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/parse_attributes/hash.yml +0 -930
  283. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/parse_attributes/nil.yml +0 -930
  284. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/parse_attributes/string.yml +0 -930
  285. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/validate_url/DOI.yml +0 -930
  286. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/validate_url/URL.yml +0 -930
  287. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/validate_url/string.yml +0 -930
  288. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/get_metadata/BlogPosting.yml +0 -477
  289. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/get_metadata/Dataset.yml +0 -1925
  290. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/get_metadata/Date.yml +0 -458
  291. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/get_metadata_as_string/Dataset.yml +0 -173
  292. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/insert_alternate_identifiers/insert.yml +0 -173
  293. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/insert_contributors/insert.yml +0 -173
  294. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/insert_contributors/none.yml +0 -173
  295. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/insert_creators/insert.yml +0 -173
  296. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/insert_dates/insert.yml +0 -173
  297. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/insert_descriptions/insert.yml +0 -155
  298. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/insert_identifier/doi.yml +0 -173
  299. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/insert_person/creator.yml +0 -173
  300. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/insert_person/creator_given_and_family_name.yml +0 -173
  301. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/insert_person/creator_only_name.yml +0 -173
  302. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/insert_publication_year/insert.yml +0 -173
  303. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/insert_publisher/insert.yml +0 -173
  304. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/insert_related_identifiers/get_related_identifier_type.yml +0 -173
  305. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/insert_related_identifiers/get_related_identifier_type_DOI.yml +0 -173
  306. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/insert_related_identifiers/get_related_identifier_type_URL.yml +0 -173
  307. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/insert_related_identifiers/insert.yml +0 -173
  308. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/insert_related_identifiers/rel_identifiers.yml +0 -173
  309. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/insert_resource_type/insert.yml +0 -173
  310. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/insert_rights_list/insert.yml +0 -173
  311. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/insert_subjects/insert.yml +0 -173
  312. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/insert_titles/doi.yml +0 -173
  313. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/insert_titles/insert.yml +0 -173
  314. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/insert_version/insert.yml +0 -173
  315. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_PID_provider/crossref.yml +0 -44
  316. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_PID_provider/crossref_doi_not_url.yml +0 -44
  317. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_PID_provider/datacite.yml +0 -44
  318. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_PID_provider/datacite_doi_http.yml +0 -44
  319. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_PID_provider/orcid.yml +0 -44
  320. data/spec/fixtures/vcr_cassettes/Bolognese_SchemaOrg/get_metadata/BlogPosting.yml +0 -632
  321. data/spec/fixtures/vcr_cassettes/Bolognese_SchemaOrg/get_metadata/not_found_error.yml +0 -93
  322. data/spec/metadata_spec.rb +0 -41
  323. data/spec/orcid_spec.rb +0 -23
  324. data/spec/schema_org_spec.rb +0 -33
  325. data/spec/spec_helper.rb +0 -88
  326. data/spec/utils_spec.rb +0 -107
data/CHANGELOG.md ADDED
@@ -0,0 +1,1864 @@
1
+ # Changelog
2
+
3
+ ## [1.10.0](https://github.com/datacite/bolognese/tree/1.10.0) (2022-10-14)
4
+
5
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.9.18...1.10.0)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - Add DFG-to-FOS mappings utility function [\#147](https://github.com/datacite/bolognese/pull/147) ([jrhoads](https://github.com/jrhoads))
10
+ - Test against multiple versions of ruby \(2.6, 2.7, 3.0, and 3.1\) [\#141](https://github.com/datacite/bolognese/pull/141) ([jrhoads](https://github.com/jrhoads))
11
+
12
+ ## [1.9.18](https://github.com/datacite/bolognese/tree/1.9.18) (2022-10-11)
13
+
14
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.9.17...1.9.18)
15
+
16
+ **Fixed bugs:**
17
+
18
+ - Fix related items handling to not include elements when they are blank [\#140](https://github.com/datacite/bolognese/issues/140)
19
+ - Related Items error out if RelatedItemIdentifier is nil [\#139](https://github.com/datacite/bolognese/issues/139)
20
+
21
+ **Merged pull requests:**
22
+
23
+ - bump version number [\#145](https://github.com/datacite/bolognese/pull/145) ([digitaldogsbody](https://github.com/digitaldogsbody))
24
+ - Fix relatedItems handling [\#144](https://github.com/datacite/bolognese/pull/144) ([digitaldogsbody](https://github.com/digitaldogsbody))
25
+ - Fixes normalization behavior that omitted non-URL funding identifiers when reading from DataCite XML. Adds normalization for Crossref Funder ID and ROR funderIdentifierTypes. [\#143](https://github.com/datacite/bolognese/pull/143) ([codycooperross](https://github.com/codycooperross))
26
+ - Including a schemeURI with a nameIdentifier that is a URL will concat… [\#137](https://github.com/datacite/bolognese/pull/137) ([codycooperross](https://github.com/codycooperross))
27
+
28
+ ## [1.9.17](https://github.com/datacite/bolognese/tree/1.9.17) (2022-07-04)
29
+
30
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.9.16...1.9.17)
31
+
32
+ ## [1.9.16](https://github.com/datacite/bolognese/tree/1.9.16) (2022-07-04)
33
+
34
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.9.15...1.9.16)
35
+
36
+ ## [1.9.15](https://github.com/datacite/bolognese/tree/1.9.15) (2022-07-04)
37
+
38
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.9.14...1.9.15)
39
+
40
+ **Merged pull requests:**
41
+
42
+ - Fix issue Bracco 521 [\#138](https://github.com/datacite/bolognese/pull/138) ([richardhallett](https://github.com/richardhallett))
43
+
44
+ ## [1.9.14](https://github.com/datacite/bolognese/tree/1.9.14) (2022-05-25)
45
+
46
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.9.13...1.9.14)
47
+
48
+ **Merged pull requests:**
49
+
50
+ - Update critical dependencies [\#134](https://github.com/datacite/bolognese/pull/134) ([jrhoads](https://github.com/jrhoads))
51
+
52
+ ## [1.9.13](https://github.com/datacite/bolognese/tree/1.9.13) (2022-01-06)
53
+
54
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.9.12...1.9.13)
55
+
56
+ **Fixed bugs:**
57
+
58
+ - Schema 4 RelatedItems does not allow relatedItem without relatedItemIdentifier [\#118](https://github.com/datacite/bolognese/issues/118)
59
+
60
+ **Closed issues:**
61
+
62
+ - How to use "bolognese help \[COMMAND\]"? [\#129](https://github.com/datacite/bolognese/issues/129)
63
+ - Move nokogiri dependency up to dependency \>= 1.12.5 [\#127](https://github.com/datacite/bolognese/issues/127)
64
+
65
+ **Merged pull requests:**
66
+
67
+ - update nokogiri to latest, including updating maremma [\#130](https://github.com/datacite/bolognese/pull/130) ([orangewolf](https://github.com/orangewolf))
68
+ - mapping for DFG-to-OECD [\#125](https://github.com/datacite/bolognese/pull/125) ([kjgarza](https://github.com/kjgarza))
69
+
70
+ ## [1.9.12](https://github.com/datacite/bolognese/tree/1.9.12) (2021-08-19)
71
+
72
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.9.11...1.9.12)
73
+
74
+ ## [1.9.11](https://github.com/datacite/bolognese/tree/1.9.11) (2021-08-17)
75
+
76
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.9.10...1.9.11)
77
+
78
+ **Closed issues:**
79
+
80
+ - Sandbox Orcid URLs are not allowed. [\#120](https://github.com/datacite/bolognese/issues/120)
81
+
82
+ **Merged pull requests:**
83
+
84
+ - Allow Orcid URLs to have been issued from the sandbox [\#121](https://github.com/datacite/bolognese/pull/121) ([prdanelli](https://github.com/prdanelli))
85
+
86
+ ## [1.9.10](https://github.com/datacite/bolognese/tree/1.9.10) (2021-07-20)
87
+
88
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.9.9...1.9.10)
89
+
90
+ ## [1.9.9](https://github.com/datacite/bolognese/tree/1.9.9) (2021-06-09)
91
+
92
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.9.8...1.9.9)
93
+
94
+ ## [1.9.8](https://github.com/datacite/bolognese/tree/1.9.8) (2021-06-08)
95
+
96
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.9.7...1.9.8)
97
+
98
+ ## [1.9.7](https://github.com/datacite/bolognese/tree/1.9.7) (2021-05-26)
99
+
100
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.9.6...1.9.7)
101
+
102
+ ## [1.9.6](https://github.com/datacite/bolognese/tree/1.9.6) (2021-05-26)
103
+
104
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.9.5...1.9.6)
105
+
106
+ **Fixed bugs:**
107
+
108
+ - Missing affiliationIdentiifer when used with schemaURI raises an error [\#116](https://github.com/datacite/bolognese/issues/116)
109
+ - Optional numberType being treated as required generating error [\#112](https://github.com/datacite/bolognese/issues/112)
110
+
111
+ **Closed issues:**
112
+
113
+ - Book metadata seems to be ignored [\#113](https://github.com/datacite/bolognese/issues/113)
114
+ - Namespaced XML Tags [\#109](https://github.com/datacite/bolognese/issues/109)
115
+ - Funder DOI validation [\#108](https://github.com/datacite/bolognese/issues/108)
116
+
117
+ **Merged pull requests:**
118
+
119
+ - Fix missing affiliation identifier [\#117](https://github.com/datacite/bolognese/pull/117) ([richardhallett](https://github.com/richardhallett))
120
+ - Add support for book title and additional metadata when reading Crossref Book Chapter DOI [\#115](https://github.com/datacite/bolognese/pull/115) ([prdanelli](https://github.com/prdanelli))
121
+ - Valid Funder DOIs are being rejected for not starting with a 5 [\#114](https://github.com/datacite/bolognese/pull/114) ([prdanelli](https://github.com/prdanelli))
122
+
123
+ ## [1.9.5](https://github.com/datacite/bolognese/tree/1.9.5) (2021-04-20)
124
+
125
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.9.4...1.9.5)
126
+
127
+ ## [1.9.4](https://github.com/datacite/bolognese/tree/1.9.4) (2021-04-13)
128
+
129
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.9.3...1.9.4)
130
+
131
+ **Implemented enhancements:**
132
+
133
+ - Should we resolve the Namespace URL for schema [\#62](https://github.com/datacite/bolognese/issues/62)
134
+
135
+ **Fixed bugs:**
136
+
137
+ - Singular geoLocationPolygons are wrapped in additional array [\#110](https://github.com/datacite/bolognese/issues/110)
138
+
139
+ **Merged pull requests:**
140
+
141
+ - Support returning single geoLocationPolygon [\#111](https://github.com/datacite/bolognese/pull/111) ([richardhallett](https://github.com/richardhallett))
142
+
143
+ ## [1.9.3](https://github.com/datacite/bolognese/tree/1.9.3) (2021-03-26)
144
+
145
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.9.2...1.9.3)
146
+
147
+ ## [1.9.2](https://github.com/datacite/bolognese/tree/1.9.2) (2021-03-25)
148
+
149
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.9.1...1.9.2)
150
+
151
+ ## [1.9.1](https://github.com/datacite/bolognese/tree/1.9.1) (2021-03-25)
152
+
153
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.9...1.9.1)
154
+
155
+ ## [1.9](https://github.com/datacite/bolognese/tree/1.9) (2021-03-24)
156
+
157
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.8.20...1.9)
158
+
159
+ **Implemented enhancements:**
160
+
161
+ - Add support for Schema 4.4 [\#104](https://github.com/datacite/bolognese/issues/104)
162
+
163
+ **Fixed bugs:**
164
+
165
+ - Correctly parse DataCite XML for formats and sizes [\#103](https://github.com/datacite/bolognese/issues/103)
166
+ - Improve auto detection of metadata formats [\#86](https://github.com/datacite/bolognese/issues/86)
167
+ - geoLocationPolygons can not be added multiple times within geoLocation elements. [\#68](https://github.com/datacite/bolognese/issues/68)
168
+ - Title field of DOI 10.1104/pp.111.178582 [\#31](https://github.com/datacite/bolognese/issues/31)
169
+
170
+ **Merged pull requests:**
171
+
172
+ - Change detection for crosscite format [\#107](https://github.com/datacite/bolognese/pull/107) ([richardhallett](https://github.com/richardhallett))
173
+ - Add support for multiple geolocation polygons [\#106](https://github.com/datacite/bolognese/pull/106) ([richardhallett](https://github.com/richardhallett))
174
+ - Support schema 4 4 [\#105](https://github.com/datacite/bolognese/pull/105) ([richardhallett](https://github.com/richardhallett))
175
+
176
+ ## [1.8.20](https://github.com/datacite/bolognese/tree/1.8.20) (2020-11-21)
177
+
178
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.8.19...1.8.20)
179
+
180
+ ## [1.8.19](https://github.com/datacite/bolognese/tree/1.8.19) (2020-11-21)
181
+
182
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.8.18...1.8.19)
183
+
184
+ ## [1.8.18](https://github.com/datacite/bolognese/tree/1.8.18) (2020-11-04)
185
+
186
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.8.17...1.8.18)
187
+
188
+ ## [1.8.17](https://github.com/datacite/bolognese/tree/1.8.17) (2020-11-04)
189
+
190
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.8.15...1.8.17)
191
+
192
+ ## [1.8.15](https://github.com/datacite/bolognese/tree/1.8.15) (2020-11-04)
193
+
194
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.8.14...1.8.15)
195
+
196
+ ## [1.8.14](https://github.com/datacite/bolognese/tree/1.8.14) (2020-11-03)
197
+
198
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.8.13...1.8.14)
199
+
200
+ **Fixed bugs:**
201
+
202
+ - Correctly parse affiliation name [\#99](https://github.com/datacite/bolognese/issues/99)
203
+ - Correctly parse ISSN for container field [\#98](https://github.com/datacite/bolognese/issues/98)
204
+
205
+ ## [1.8.13](https://github.com/datacite/bolognese/tree/1.8.13) (2020-10-13)
206
+
207
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.8.12...1.8.13)
208
+
209
+ ## [1.8.12](https://github.com/datacite/bolognese/tree/1.8.12) (2020-10-12)
210
+
211
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.8.10...1.8.12)
212
+
213
+ ## [1.8.10](https://github.com/datacite/bolognese/tree/1.8.10) (2020-10-11)
214
+
215
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.8.9...1.8.10)
216
+
217
+ ## [1.8.9](https://github.com/datacite/bolognese/tree/1.8.9) (2020-08-22)
218
+
219
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.8.8...1.8.9)
220
+
221
+ ## [1.8.8](https://github.com/datacite/bolognese/tree/1.8.8) (2020-08-22)
222
+
223
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.8.7...1.8.8)
224
+
225
+ ## [1.8.7](https://github.com/datacite/bolognese/tree/1.8.7) (2020-08-21)
226
+
227
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.8.6...1.8.7)
228
+
229
+ ## [1.8.6](https://github.com/datacite/bolognese/tree/1.8.6) (2020-08-13)
230
+
231
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.8.5...1.8.6)
232
+
233
+ **Fixed bugs:**
234
+
235
+ - Correctly parse Crossref posted content for publisher [\#100](https://github.com/datacite/bolognese/issues/100)
236
+
237
+ **Closed issues:**
238
+
239
+ - Allow pre-1.0 versions of thor [\#101](https://github.com/datacite/bolognese/issues/101)
240
+
241
+ **Merged pull requests:**
242
+
243
+ - Allow some pre-1.0 versions of thor [\#102](https://github.com/datacite/bolognese/pull/102) ([cjcolvar](https://github.com/cjcolvar))
244
+
245
+ ## [1.8.5](https://github.com/datacite/bolognese/tree/1.8.5) (2020-07-30)
246
+
247
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.8.4...1.8.5)
248
+
249
+ ## [1.8.4](https://github.com/datacite/bolognese/tree/1.8.4) (2020-07-29)
250
+
251
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.8.3...1.8.4)
252
+
253
+ ## [1.8.3](https://github.com/datacite/bolognese/tree/1.8.3) (2020-07-29)
254
+
255
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.8.2...1.8.3)
256
+
257
+ ## [1.8.2](https://github.com/datacite/bolognese/tree/1.8.2) (2020-07-24)
258
+
259
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.8.1...1.8.2)
260
+
261
+ **Fixed bugs:**
262
+
263
+ - Schema.org metadata generated from DOI metadata not showing resourceTypeGeneral [\#94](https://github.com/datacite/bolognese/issues/94)
264
+
265
+ ## [1.8.1](https://github.com/datacite/bolognese/tree/1.8.1) (2020-07-17)
266
+
267
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.8...1.8.1)
268
+
269
+ **Merged pull requests:**
270
+
271
+ - Fix content negotiate for schema 3.x dois [\#97](https://github.com/datacite/bolognese/pull/97) ([kjgarza](https://github.com/kjgarza))
272
+
273
+ ## [1.8](https://github.com/datacite/bolognese/tree/1.8) (2020-07-14)
274
+
275
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.7.4...1.8)
276
+
277
+ ## [1.7.4](https://github.com/datacite/bolognese/tree/1.7.4) (2020-07-14)
278
+
279
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.7.3...1.7.4)
280
+
281
+ ## [1.7.3](https://github.com/datacite/bolognese/tree/1.7.3) (2020-07-13)
282
+
283
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.7.2...1.7.3)
284
+
285
+ ## [1.7.2](https://github.com/datacite/bolognese/tree/1.7.2) (2020-07-12)
286
+
287
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.7.1...1.7.2)
288
+
289
+ ## [1.7.1](https://github.com/datacite/bolognese/tree/1.7.1) (2020-07-12)
290
+
291
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.7...1.7.1)
292
+
293
+ ## [1.7](https://github.com/datacite/bolognese/tree/1.7) (2020-07-12)
294
+
295
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.6.12...1.7)
296
+
297
+ ## [1.6.12](https://github.com/datacite/bolognese/tree/1.6.12) (2020-07-11)
298
+
299
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.6.11...1.6.12)
300
+
301
+ **Implemented enhancements:**
302
+
303
+ - Support \[computer program\] in citations in APA style [\#95](https://github.com/datacite/bolognese/issues/95)
304
+
305
+ **Fixed bugs:**
306
+
307
+ - Support inLanguage as part of schema.org reader [\#87](https://github.com/datacite/bolognese/issues/87)
308
+
309
+ **Merged pull requests:**
310
+
311
+ - fix: add language support for reading [\#96](https://github.com/datacite/bolognese/pull/96) ([kjgarza](https://github.com/kjgarza))
312
+
313
+ ## [1.6.11](https://github.com/datacite/bolognese/tree/1.6.11) (2020-07-01)
314
+
315
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.6.10...1.6.11)
316
+
317
+ ## [1.6.10](https://github.com/datacite/bolognese/tree/1.6.10) (2020-07-01)
318
+
319
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.6.9...1.6.10)
320
+
321
+ ## [1.6.9](https://github.com/datacite/bolognese/tree/1.6.9) (2020-07-01)
322
+
323
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.6.8...1.6.9)
324
+
325
+ ## [1.6.8](https://github.com/datacite/bolognese/tree/1.6.8) (2020-06-29)
326
+
327
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.6.7...1.6.8)
328
+
329
+ ## [1.6.7](https://github.com/datacite/bolognese/tree/1.6.7) (2020-06-24)
330
+
331
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.6.6...1.6.7)
332
+
333
+ ## [1.6.6](https://github.com/datacite/bolognese/tree/1.6.6) (2020-06-23)
334
+
335
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.6.5...1.6.6)
336
+
337
+ ## [1.6.5](https://github.com/datacite/bolognese/tree/1.6.5) (2020-06-19)
338
+
339
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.6.4...1.6.5)
340
+
341
+ ## [1.6.4](https://github.com/datacite/bolognese/tree/1.6.4) (2020-06-03)
342
+
343
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.6.3...1.6.4)
344
+
345
+ **Merged pull requests:**
346
+
347
+ - Adding support for spdx rightsidentifier [\#92](https://github.com/datacite/bolognese/pull/92) ([mfenner](https://github.com/mfenner))
348
+
349
+ ## [1.6.3](https://github.com/datacite/bolognese/tree/1.6.3) (2020-06-02)
350
+
351
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.6.2...1.6.3)
352
+
353
+ ## [1.6.2](https://github.com/datacite/bolognese/tree/1.6.2) (2020-06-02)
354
+
355
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.6...1.6.2)
356
+
357
+ **Fixed bugs:**
358
+
359
+ - Missing funderIdentifier in DataCite JSON [\#84](https://github.com/datacite/bolognese/issues/84)
360
+
361
+ **Merged pull requests:**
362
+
363
+ - Map Fields of Research classification to OECD Fields of Science [\#93](https://github.com/datacite/bolognese/pull/93) ([mfenner](https://github.com/mfenner))
364
+ - Don't try and normalise "Other" funder types. [\#91](https://github.com/datacite/bolognese/pull/91) ([richardhallett](https://github.com/richardhallett))
365
+
366
+ ## [1.6](https://github.com/datacite/bolognese/tree/1.6) (2020-05-16)
367
+
368
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.5.21...1.6)
369
+
370
+ **Merged pull requests:**
371
+
372
+ - rename internal property version\_info to version [\#89](https://github.com/datacite/bolognese/pull/89) ([mfenner](https://github.com/mfenner))
373
+
374
+ ## [1.5.21](https://github.com/datacite/bolognese/tree/1.5.21) (2020-05-03)
375
+
376
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.5.20...1.5.21)
377
+
378
+ ## [1.5.20](https://github.com/datacite/bolognese/tree/1.5.20) (2020-05-03)
379
+
380
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.5.19...1.5.20)
381
+
382
+ **Merged pull requests:**
383
+
384
+ - Sizes and formats [\#88](https://github.com/datacite/bolognese/pull/88) ([mfenner](https://github.com/mfenner))
385
+
386
+ ## [1.5.19](https://github.com/datacite/bolognese/tree/1.5.19) (2020-04-30)
387
+
388
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.5.18...1.5.19)
389
+
390
+ ## [1.5.18](https://github.com/datacite/bolognese/tree/1.5.18) (2020-04-30)
391
+
392
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.5.17...1.5.18)
393
+
394
+ **Merged pull requests:**
395
+
396
+ - fixes missing version attribute when data comes from datacite\_json [\#85](https://github.com/datacite/bolognese/pull/85) ([kjgarza](https://github.com/kjgarza))
397
+
398
+ ## [1.5.17](https://github.com/datacite/bolognese/tree/1.5.17) (2020-04-18)
399
+
400
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.5.16...1.5.17)
401
+
402
+ ## [1.5.16](https://github.com/datacite/bolognese/tree/1.5.16) (2020-04-17)
403
+
404
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.5.15...1.5.16)
405
+
406
+ **Closed issues:**
407
+
408
+ - contact name test [\#83](https://github.com/datacite/bolognese/issues/83)
409
+
410
+ ## [1.5.15](https://github.com/datacite/bolognese/tree/1.5.15) (2020-02-26)
411
+
412
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.5.14...1.5.15)
413
+
414
+ ## [1.5.14](https://github.com/datacite/bolognese/tree/1.5.14) (2020-02-25)
415
+
416
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.5.13...1.5.14)
417
+
418
+ ## [1.5.13](https://github.com/datacite/bolognese/tree/1.5.13) (2020-02-25)
419
+
420
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.5.12...1.5.13)
421
+
422
+ ## [1.5.12](https://github.com/datacite/bolognese/tree/1.5.12) (2020-02-25)
423
+
424
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.5.11...1.5.12)
425
+
426
+ ## [1.5.11](https://github.com/datacite/bolognese/tree/1.5.11) (2020-02-25)
427
+
428
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.5.10...1.5.11)
429
+
430
+ ## [1.5.10](https://github.com/datacite/bolognese/tree/1.5.10) (2020-02-25)
431
+
432
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.5.9...1.5.10)
433
+
434
+ ## [1.5.9](https://github.com/datacite/bolognese/tree/1.5.9) (2020-02-25)
435
+
436
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.5.8...1.5.9)
437
+
438
+ ## [1.5.8](https://github.com/datacite/bolognese/tree/1.5.8) (2020-02-25)
439
+
440
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.5.7...1.5.8)
441
+
442
+ ## [1.5.7](https://github.com/datacite/bolognese/tree/1.5.7) (2020-02-25)
443
+
444
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.5.6...1.5.7)
445
+
446
+ ## [1.5.6](https://github.com/datacite/bolognese/tree/1.5.6) (2020-02-25)
447
+
448
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.5.5...1.5.6)
449
+
450
+ ## [1.5.5](https://github.com/datacite/bolognese/tree/1.5.5) (2020-02-25)
451
+
452
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.5.3...1.5.5)
453
+
454
+ ## [1.5.3](https://github.com/datacite/bolognese/tree/1.5.3) (2020-02-25)
455
+
456
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.5.2...1.5.3)
457
+
458
+ **Fixed bugs:**
459
+
460
+ - Errors parsing some crossref given-name [\#81](https://github.com/datacite/bolognese/issues/81)
461
+
462
+ **Merged pull requests:**
463
+
464
+ - language insert is not implemented [\#82](https://github.com/datacite/bolognese/pull/82) ([kjgarza](https://github.com/kjgarza))
465
+
466
+ ## [1.5.2](https://github.com/datacite/bolognese/tree/1.5.2) (2020-02-23)
467
+
468
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.5.1...1.5.2)
469
+
470
+ **Fixed bugs:**
471
+
472
+ - Don't store DOI related\_identifier as URL [\#80](https://github.com/datacite/bolognese/issues/80)
473
+
474
+ ## [1.5.1](https://github.com/datacite/bolognese/tree/1.5.1) (2020-02-23)
475
+
476
+ [Full Changelog](https://github.com/datacite/bolognese/compare/1.5...1.5.1)
477
+
478
+ ## [1.5](https://github.com/datacite/bolognese/tree/1.5) (2020-02-22)
479
+
480
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.4.6...1.5)
481
+
482
+ ## [v.1.4.6](https://github.com/datacite/bolognese/tree/v.1.4.6) (2020-02-17)
483
+
484
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.4.5...v.1.4.6)
485
+
486
+ ## [v.1.4.5](https://github.com/datacite/bolognese/tree/v.1.4.5) (2020-02-09)
487
+
488
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.4.4...v.1.4.5)
489
+
490
+ ## [v.1.4.4](https://github.com/datacite/bolognese/tree/v.1.4.4) (2020-02-09)
491
+
492
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.4.3...v.1.4.4)
493
+
494
+ ## [v.1.4.3](https://github.com/datacite/bolognese/tree/v.1.4.3) (2020-02-07)
495
+
496
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.4.2...v.1.4.3)
497
+
498
+ ## [v.1.4.2](https://github.com/datacite/bolognese/tree/v.1.4.2) (2020-02-07)
499
+
500
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.4.1...v.1.4.2)
501
+
502
+ **Merged pull requests:**
503
+
504
+ - Bump rack from 2.0.7 to 2.0.8 [\#79](https://github.com/datacite/bolognese/pull/79) ([dependabot[bot]](https://github.com/apps/dependabot))
505
+
506
+ ## [v.1.4.1](https://github.com/datacite/bolognese/tree/v.1.4.1) (2019-12-15)
507
+
508
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.4...v.1.4.1)
509
+
510
+ ## [v.1.4](https://github.com/datacite/bolognese/tree/v.1.4) (2019-12-15)
511
+
512
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.3.23...v.1.4)
513
+
514
+ **Merged pull requests:**
515
+
516
+ - Bump loofah from 2.3.0 to 2.3.1 [\#78](https://github.com/datacite/bolognese/pull/78) ([dependabot[bot]](https://github.com/apps/dependabot))
517
+
518
+ ## [v.1.3.23](https://github.com/datacite/bolognese/tree/v.1.3.23) (2019-10-16)
519
+
520
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.3.22...v.1.3.23)
521
+
522
+ ## [v.1.3.22](https://github.com/datacite/bolognese/tree/v.1.3.22) (2019-10-15)
523
+
524
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.3.21...v.1.3.22)
525
+
526
+ ## [v.1.3.21](https://github.com/datacite/bolognese/tree/v.1.3.21) (2019-10-15)
527
+
528
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.3.20...v.1.3.21)
529
+
530
+ ## [v.1.3.20](https://github.com/datacite/bolognese/tree/v.1.3.20) (2019-10-15)
531
+
532
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.3.19...v.1.3.20)
533
+
534
+ **Fixed bugs:**
535
+
536
+ - Correctly parse xs:string [\#51](https://github.com/datacite/bolognese/issues/51)
537
+
538
+ **Closed issues:**
539
+
540
+ - doi\_utils.rb:6:in `match': no implicit conversion of Array into String \(TypeError\) [\#69](https://github.com/datacite/bolognese/issues/69)
541
+
542
+ ## [v.1.3.19](https://github.com/datacite/bolognese/tree/v.1.3.19) (2019-09-14)
543
+
544
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.3.18...v.1.3.19)
545
+
546
+ ## [v.1.3.18](https://github.com/datacite/bolognese/tree/v.1.3.18) (2019-09-14)
547
+
548
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.3.17...v.1.3.18)
549
+
550
+ ## [v.1.3.17](https://github.com/datacite/bolognese/tree/v.1.3.17) (2019-08-31)
551
+
552
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.3.16...v.1.3.17)
553
+
554
+ ## [v.1.3.16](https://github.com/datacite/bolognese/tree/v.1.3.16) (2019-08-27)
555
+
556
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.3.14...v.1.3.16)
557
+
558
+ **Merged pull requests:**
559
+
560
+ - bump version [\#75](https://github.com/datacite/bolognese/pull/75) ([kjgarza](https://github.com/kjgarza))
561
+
562
+ ## [v.1.3.14](https://github.com/datacite/bolognese/tree/v.1.3.14) (2019-08-27)
563
+
564
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.3.13...v.1.3.14)
565
+
566
+ **Fixed bugs:**
567
+
568
+ - Strip surrounding whitespace from dates [\#49](https://github.com/datacite/bolognese/issues/49)
569
+
570
+ **Closed issues:**
571
+
572
+ - Ignore invalid dates [\#73](https://github.com/datacite/bolognese/issues/73)
573
+
574
+ **Merged pull requests:**
575
+
576
+ - correctly parsing funderIdentifier [\#74](https://github.com/datacite/bolognese/pull/74) ([kjgarza](https://github.com/kjgarza))
577
+
578
+ ## [v.1.3.13](https://github.com/datacite/bolognese/tree/v.1.3.13) (2019-08-05)
579
+
580
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.3.11...v.1.3.13)
581
+
582
+ ## [v.1.3.11](https://github.com/datacite/bolognese/tree/v.1.3.11) (2019-08-04)
583
+
584
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.3.10...v.1.3.11)
585
+
586
+ ## [v.1.3.10](https://github.com/datacite/bolognese/tree/v.1.3.10) (2019-08-04)
587
+
588
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.3.9...v.1.3.10)
589
+
590
+ **Fixed bugs:**
591
+
592
+ - handle namespaces in crossref container metadata [\#72](https://github.com/datacite/bolognese/issues/72)
593
+
594
+ ## [v.1.3.9](https://github.com/datacite/bolognese/tree/v.1.3.9) (2019-08-03)
595
+
596
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.3.8...v.1.3.9)
597
+
598
+ **Closed issues:**
599
+
600
+ - Transfer MIT [\#71](https://github.com/datacite/bolognese/issues/71)
601
+
602
+ ## [v.1.3.8](https://github.com/datacite/bolognese/tree/v.1.3.8) (2019-07-20)
603
+
604
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.3.7...v.1.3.8)
605
+
606
+ ## [v.1.3.7](https://github.com/datacite/bolognese/tree/v.1.3.7) (2019-07-20)
607
+
608
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.3.6...v.1.3.7)
609
+
610
+ ## [v.1.3.6](https://github.com/datacite/bolognese/tree/v.1.3.6) (2019-07-18)
611
+
612
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.3.5...v.1.3.6)
613
+
614
+ ## [v.1.3.5](https://github.com/datacite/bolognese/tree/v.1.3.5) (2019-07-18)
615
+
616
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.3.4...v.1.3.5)
617
+
618
+ ## [v.1.3.4](https://github.com/datacite/bolognese/tree/v.1.3.4) (2019-07-18)
619
+
620
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.3.3...v.1.3.4)
621
+
622
+ ## [v.1.3.3](https://github.com/datacite/bolognese/tree/v.1.3.3) (2019-07-16)
623
+
624
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.3.2...v.1.3.3)
625
+
626
+ ## [v.1.3.2](https://github.com/datacite/bolognese/tree/v.1.3.2) (2019-07-14)
627
+
628
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.3.1...v.1.3.2)
629
+
630
+ ## [v.1.3.1](https://github.com/datacite/bolognese/tree/v.1.3.1) (2019-07-14)
631
+
632
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.3...v.1.3.1)
633
+
634
+ ## [v.1.3](https://github.com/datacite/bolognese/tree/v.1.3) (2019-07-14)
635
+
636
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.2.20...v.1.3)
637
+
638
+ ## [v.1.2.20](https://github.com/datacite/bolognese/tree/v.1.2.20) (2019-07-07)
639
+
640
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.2.19...v.1.2.20)
641
+
642
+ **Closed issues:**
643
+
644
+ - Fix issues with Crossref metadata parsing [\#65](https://github.com/datacite/bolognese/issues/65)
645
+
646
+ ## [v.1.2.19](https://github.com/datacite/bolognese/tree/v.1.2.19) (2019-07-07)
647
+
648
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.2.18...v.1.2.19)
649
+
650
+ ## [v.1.2.18](https://github.com/datacite/bolognese/tree/v.1.2.18) (2019-07-07)
651
+
652
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.2.17...v.1.2.18)
653
+
654
+ ## [v.1.2.17](https://github.com/datacite/bolognese/tree/v.1.2.17) (2019-07-07)
655
+
656
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.2.16...v.1.2.17)
657
+
658
+ **Closed issues:**
659
+
660
+ - Error when schema.org in put has array value for @type [\#66](https://github.com/datacite/bolognese/issues/66)
661
+
662
+ **Merged pull requests:**
663
+
664
+ - Default to `ScholarlyArticle` type for `citation` and `isBasedOn` relationships with datasets [\#64](https://github.com/datacite/bolognese/pull/64) ([chrisgorgo](https://github.com/chrisgorgo))
665
+
666
+ ## [v.1.2.16](https://github.com/datacite/bolognese/tree/v.1.2.16) (2019-07-07)
667
+
668
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.2.15...v.1.2.16)
669
+
670
+ ## [v.1.2.15](https://github.com/datacite/bolognese/tree/v.1.2.15) (2019-07-07)
671
+
672
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.2.14...v.1.2.15)
673
+
674
+ ## [v.1.2.14](https://github.com/datacite/bolognese/tree/v.1.2.14) (2019-07-07)
675
+
676
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.2.13...v.1.2.14)
677
+
678
+ ## [v.1.2.13](https://github.com/datacite/bolognese/tree/v.1.2.13) (2019-07-06)
679
+
680
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.2.12...v.1.2.13)
681
+
682
+ ## [v.1.2.12](https://github.com/datacite/bolognese/tree/v.1.2.12) (2019-07-06)
683
+
684
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.2.11...v.1.2.12)
685
+
686
+ ## [v.1.2.11](https://github.com/datacite/bolognese/tree/v.1.2.11) (2019-07-06)
687
+
688
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.2.10...v.1.2.11)
689
+
690
+ **Fixed bugs:**
691
+
692
+ - Fix author and page in citeproc processing [\#67](https://github.com/datacite/bolognese/issues/67)
693
+
694
+ ## [v.1.2.10](https://github.com/datacite/bolognese/tree/v.1.2.10) (2019-07-06)
695
+
696
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.2.9...v.1.2.10)
697
+
698
+ ## [v.1.2.9](https://github.com/datacite/bolognese/tree/v.1.2.9) (2019-07-06)
699
+
700
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.2.8...v.1.2.9)
701
+
702
+ ## [v.1.2.8](https://github.com/datacite/bolognese/tree/v.1.2.8) (2019-07-06)
703
+
704
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.2.7...v.1.2.8)
705
+
706
+ ## [v.1.2.7](https://github.com/datacite/bolognese/tree/v.1.2.7) (2019-07-06)
707
+
708
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.2.6...v.1.2.7)
709
+
710
+ ## [v.1.2.6](https://github.com/datacite/bolognese/tree/v.1.2.6) (2019-07-06)
711
+
712
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.2.5...v.1.2.6)
713
+
714
+ ## [v.1.2.5](https://github.com/datacite/bolognese/tree/v.1.2.5) (2019-07-05)
715
+
716
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.2.4...v.1.2.5)
717
+
718
+ ## [v.1.2.4](https://github.com/datacite/bolognese/tree/v.1.2.4) (2019-07-05)
719
+
720
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.2.3...v.1.2.4)
721
+
722
+ ## [v.1.2.3](https://github.com/datacite/bolognese/tree/v.1.2.3) (2019-07-04)
723
+
724
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.2.2...v.1.2.3)
725
+
726
+ ## [v.1.2.2](https://github.com/datacite/bolognese/tree/v.1.2.2) (2019-07-04)
727
+
728
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.2.1...v.1.2.2)
729
+
730
+ ## [v.1.2.1](https://github.com/datacite/bolognese/tree/v.1.2.1) (2019-07-04)
731
+
732
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.2...v.1.2.1)
733
+
734
+ ## [v.1.2](https://github.com/datacite/bolognese/tree/v.1.2) (2019-07-03)
735
+
736
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.1.17...v.1.2)
737
+
738
+ **Fixed bugs:**
739
+
740
+ - handle url vor for crossref dois [\#63](https://github.com/datacite/bolognese/issues/63)
741
+
742
+ ## [v.1.1.17](https://github.com/datacite/bolognese/tree/v.1.1.17) (2019-06-24)
743
+
744
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.1.16...v.1.1.17)
745
+
746
+ ## [v.1.1.16](https://github.com/datacite/bolognese/tree/v.1.1.16) (2019-05-31)
747
+
748
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.1.15...v.1.1.16)
749
+
750
+ ## [v.1.1.15](https://github.com/datacite/bolognese/tree/v.1.1.15) (2019-05-22)
751
+
752
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.1.14...v.1.1.15)
753
+
754
+ ## [v.1.1.14](https://github.com/datacite/bolognese/tree/v.1.1.14) (2019-04-20)
755
+
756
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v1.1.13...v.1.1.14)
757
+
758
+ ## [v1.1.13](https://github.com/datacite/bolognese/tree/v1.1.13) (2019-04-17)
759
+
760
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.1.12...v1.1.13)
761
+
762
+ **Merged pull requests:**
763
+
764
+ - When authors is a plain string, don't try to parse [\#60](https://github.com/datacite/bolognese/pull/60) ([richardhallett](https://github.com/richardhallett))
765
+
766
+ ## [v.1.1.12](https://github.com/datacite/bolognese/tree/v.1.1.12) (2019-04-15)
767
+
768
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.1.11...v.1.1.12)
769
+
770
+ **Closed issues:**
771
+
772
+ - Support for ValueURI in doi index [\#58](https://github.com/datacite/bolognese/issues/58)
773
+ - Affiliation should be an array of strings [\#57](https://github.com/datacite/bolognese/issues/57)
774
+
775
+ **Merged pull requests:**
776
+
777
+ - Bug ris hyphen [\#59](https://github.com/datacite/bolognese/pull/59) ([kjgarza](https://github.com/kjgarza))
778
+
779
+ ## [v.1.1.11](https://github.com/datacite/bolognese/tree/v.1.1.11) (2019-04-10)
780
+
781
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.1.8...v.1.1.11)
782
+
783
+ **Closed issues:**
784
+
785
+ - Support for schemeUri in doi index [\#56](https://github.com/datacite/bolognese/issues/56)
786
+
787
+ ## [v.1.1.8](https://github.com/datacite/bolognese/tree/v.1.1.8) (2019-03-12)
788
+
789
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.1.7...v.1.1.8)
790
+
791
+ **Fixed bugs:**
792
+
793
+ - include affiliation in datacite xml [\#55](https://github.com/datacite/bolognese/issues/55)
794
+
795
+ ## [v.1.1.7](https://github.com/datacite/bolognese/tree/v.1.1.7) (2019-03-05)
796
+
797
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.1.6...v.1.1.7)
798
+
799
+ ## [v.1.1.6](https://github.com/datacite/bolognese/tree/v.1.1.6) (2019-02-20)
800
+
801
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.1.5...v.1.1.6)
802
+
803
+ ## [v.1.1.5](https://github.com/datacite/bolognese/tree/v.1.1.5) (2019-02-18)
804
+
805
+ [Full Changelog](https://github.com/datacite/bolognese/compare/V.1.1.4...v.1.1.5)
806
+
807
+ ## [V.1.1.4](https://github.com/datacite/bolognese/tree/V.1.1.4) (2019-02-14)
808
+
809
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.1.4...V.1.1.4)
810
+
811
+ ## [v.1.1.4](https://github.com/datacite/bolognese/tree/v.1.1.4) (2019-02-14)
812
+
813
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.1.3...v.1.1.4)
814
+
815
+ ## [v.1.1.3](https://github.com/datacite/bolognese/tree/v.1.1.3) (2019-02-07)
816
+
817
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.1.2...v.1.1.3)
818
+
819
+ **Fixed bugs:**
820
+
821
+ - Use most recent codemeta spec [\#30](https://github.com/datacite/bolognese/issues/30)
822
+
823
+ **Closed issues:**
824
+
825
+ - Support CSV export [\#53](https://github.com/datacite/bolognese/issues/53)
826
+
827
+ **Merged pull requests:**
828
+
829
+ - Refactor update codemeta [\#54](https://github.com/datacite/bolognese/pull/54) ([kjgarza](https://github.com/kjgarza))
830
+
831
+ ## [v.1.1.2](https://github.com/datacite/bolognese/tree/v.1.1.2) (2019-01-12)
832
+
833
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v1.1.1...v.1.1.2)
834
+
835
+ ## [v1.1.1](https://github.com/datacite/bolognese/tree/v1.1.1) (2019-01-11)
836
+
837
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.1...v1.1.1)
838
+
839
+ ## [v.1.1](https://github.com/datacite/bolognese/tree/v.1.1) (2019-01-11)
840
+
841
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.36...v.1.1)
842
+
843
+ ## [v.1.0.36](https://github.com/datacite/bolognese/tree/v.1.0.36) (2019-01-10)
844
+
845
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.35...v.1.0.36)
846
+
847
+ ## [v.1.0.35](https://github.com/datacite/bolognese/tree/v.1.0.35) (2019-01-10)
848
+
849
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.34...v.1.0.35)
850
+
851
+ ## [v.1.0.34](https://github.com/datacite/bolognese/tree/v.1.0.34) (2019-01-10)
852
+
853
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.33...v.1.0.34)
854
+
855
+ **Closed issues:**
856
+
857
+ - Remove Solr dependency from bolognese [\#50](https://github.com/datacite/bolognese/issues/50)
858
+
859
+ ## [v.1.0.33](https://github.com/datacite/bolognese/tree/v.1.0.33) (2018-12-29)
860
+
861
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.32...v.1.0.33)
862
+
863
+ ## [v.1.0.32](https://github.com/datacite/bolognese/tree/v.1.0.32) (2018-12-14)
864
+
865
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.31...v.1.0.32)
866
+
867
+ ## [v.1.0.31](https://github.com/datacite/bolognese/tree/v.1.0.31) (2018-12-10)
868
+
869
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.30...v.1.0.31)
870
+
871
+ **Closed issues:**
872
+
873
+ - Rename periodical to container [\#47](https://github.com/datacite/bolognese/issues/47)
874
+ - Consolidate datacite\_json into crosscite [\#46](https://github.com/datacite/bolognese/issues/46)
875
+ - Merge alternateIdentifiers into a more general identifiers property [\#45](https://github.com/datacite/bolognese/issues/45)
876
+ - Support geoLocationPolygon [\#44](https://github.com/datacite/bolognese/issues/44)
877
+ - Support nameType and affiliation for creator and contributor [\#43](https://github.com/datacite/bolognese/issues/43)
878
+
879
+ ## [v.1.0.30](https://github.com/datacite/bolognese/tree/v.1.0.30) (2018-12-09)
880
+
881
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.29...v.1.0.30)
882
+
883
+ **Fixed bugs:**
884
+
885
+ - No matching global declaration available for the validation root [\#42](https://github.com/datacite/bolognese/issues/42)
886
+ - Error on multiple date issued [\#38](https://github.com/datacite/bolognese/issues/38)
887
+
888
+ **Closed issues:**
889
+
890
+ - Implement proxyIdentifiers for Event Data [\#48](https://github.com/datacite/bolognese/issues/48)
891
+
892
+ ## [v.1.0.29](https://github.com/datacite/bolognese/tree/v.1.0.29) (2018-12-05)
893
+
894
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.28...v.1.0.29)
895
+
896
+ ## [v.1.0.28](https://github.com/datacite/bolognese/tree/v.1.0.28) (2018-12-01)
897
+
898
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.27...v.1.0.28)
899
+
900
+ ## [v.1.0.27](https://github.com/datacite/bolognese/tree/v.1.0.27) (2018-11-30)
901
+
902
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.26...v.1.0.27)
903
+
904
+ ## [v.1.0.26](https://github.com/datacite/bolognese/tree/v.1.0.26) (2018-11-28)
905
+
906
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.25...v.1.0.26)
907
+
908
+ ## [v.1.0.25](https://github.com/datacite/bolognese/tree/v.1.0.25) (2018-11-28)
909
+
910
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.24...v.1.0.25)
911
+
912
+ ## [v.1.0.24](https://github.com/datacite/bolognese/tree/v.1.0.24) (2018-11-28)
913
+
914
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.23...v.1.0.24)
915
+
916
+ ## [v.1.0.23](https://github.com/datacite/bolognese/tree/v.1.0.23) (2018-11-28)
917
+
918
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.21...v.1.0.23)
919
+
920
+ ## [v.1.0.21](https://github.com/datacite/bolognese/tree/v.1.0.21) (2018-11-26)
921
+
922
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.20...v.1.0.21)
923
+
924
+ ## [v.1.0.20](https://github.com/datacite/bolognese/tree/v.1.0.20) (2018-11-26)
925
+
926
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.17...v.1.0.20)
927
+
928
+ ## [v.1.0.17](https://github.com/datacite/bolognese/tree/v.1.0.17) (2018-11-26)
929
+
930
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.15.9...v.1.0.17)
931
+
932
+ ## [v.0.15.9](https://github.com/datacite/bolognese/tree/v.0.15.9) (2018-11-23)
933
+
934
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.15.8...v.0.15.9)
935
+
936
+ ## [v.0.15.8](https://github.com/datacite/bolognese/tree/v.0.15.8) (2018-11-23)
937
+
938
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.15.7...v.0.15.8)
939
+
940
+ ## [v.0.15.7](https://github.com/datacite/bolognese/tree/v.0.15.7) (2018-11-23)
941
+
942
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.16...v.0.15.7)
943
+
944
+ ## [v.1.0.16](https://github.com/datacite/bolognese/tree/v.1.0.16) (2018-11-21)
945
+
946
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.15...v.1.0.16)
947
+
948
+ ## [v.1.0.15](https://github.com/datacite/bolognese/tree/v.1.0.15) (2018-11-20)
949
+
950
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.14...v.1.0.15)
951
+
952
+ **Fixed bugs:**
953
+
954
+ - Broken citeproc parsing [\#41](https://github.com/datacite/bolognese/issues/41)
955
+
956
+ ## [v.1.0.14](https://github.com/datacite/bolognese/tree/v.1.0.14) (2018-11-20)
957
+
958
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.13...v.1.0.14)
959
+
960
+ ## [v.1.0.13](https://github.com/datacite/bolognese/tree/v.1.0.13) (2018-11-18)
961
+
962
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.12...v.1.0.13)
963
+
964
+ ## [v.1.0.12](https://github.com/datacite/bolognese/tree/v.1.0.12) (2018-11-16)
965
+
966
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.11...v.1.0.12)
967
+
968
+ ## [v.1.0.11](https://github.com/datacite/bolognese/tree/v.1.0.11) (2018-11-16)
969
+
970
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.10...v.1.0.11)
971
+
972
+ ## [v.1.0.10](https://github.com/datacite/bolognese/tree/v.1.0.10) (2018-11-16)
973
+
974
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.9...v.1.0.10)
975
+
976
+ ## [v.1.0.9](https://github.com/datacite/bolognese/tree/v.1.0.9) (2018-11-15)
977
+
978
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.8...v.1.0.9)
979
+
980
+ **Closed issues:**
981
+
982
+ - Use camelCase as internal format [\#40](https://github.com/datacite/bolognese/issues/40)
983
+
984
+ ## [v.1.0.8](https://github.com/datacite/bolognese/tree/v.1.0.8) (2018-11-15)
985
+
986
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.7...v.1.0.8)
987
+
988
+ ## [v.1.0.7](https://github.com/datacite/bolognese/tree/v.1.0.7) (2018-11-12)
989
+
990
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.6...v.1.0.7)
991
+
992
+ ## [v.1.0.6](https://github.com/datacite/bolognese/tree/v.1.0.6) (2018-11-11)
993
+
994
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.5...v.1.0.6)
995
+
996
+ ## [v.1.0.5](https://github.com/datacite/bolognese/tree/v.1.0.5) (2018-11-11)
997
+
998
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.4...v.1.0.5)
999
+
1000
+ ## [v.1.0.4](https://github.com/datacite/bolognese/tree/v.1.0.4) (2018-11-11)
1001
+
1002
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.15.6...v.1.0.4)
1003
+
1004
+ ## [v.0.15.6](https://github.com/datacite/bolognese/tree/v.0.15.6) (2018-11-09)
1005
+
1006
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.15.5...v.0.15.6)
1007
+
1008
+ ## [v.0.15.5](https://github.com/datacite/bolognese/tree/v.0.15.5) (2018-11-09)
1009
+
1010
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.15.4...v.0.15.5)
1011
+
1012
+ ## [v.0.15.4](https://github.com/datacite/bolognese/tree/v.0.15.4) (2018-11-08)
1013
+
1014
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.3...v.0.15.4)
1015
+
1016
+ ## [v.1.0.3](https://github.com/datacite/bolognese/tree/v.1.0.3) (2018-11-05)
1017
+
1018
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.2...v.1.0.3)
1019
+
1020
+ ## [v.1.0.2](https://github.com/datacite/bolognese/tree/v.1.0.2) (2018-11-03)
1021
+
1022
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0.1...v.1.0.2)
1023
+
1024
+ ## [v.1.0.1](https://github.com/datacite/bolognese/tree/v.1.0.1) (2018-11-03)
1025
+
1026
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.1.0...v.1.0.1)
1027
+
1028
+ **Closed issues:**
1029
+
1030
+ - Support all DataCite metadata [\#39](https://github.com/datacite/bolognese/issues/39)
1031
+
1032
+ ## [v.1.0](https://github.com/datacite/bolognese/tree/v.1.0) (2018-11-01)
1033
+
1034
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.15.3...v.1.0)
1035
+
1036
+ ## [v.0.15.3](https://github.com/datacite/bolognese/tree/v.0.15.3) (2018-10-13)
1037
+
1038
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.15.2...v.0.15.3)
1039
+
1040
+ ## [v.0.15.2](https://github.com/datacite/bolognese/tree/v.0.15.2) (2018-10-13)
1041
+
1042
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.15.1...v.0.15.2)
1043
+
1044
+ **Closed issues:**
1045
+
1046
+ - Use citeproc-ruby for citation formatting [\#36](https://github.com/datacite/bolognese/issues/36)
1047
+
1048
+ ## [v.0.15.1](https://github.com/datacite/bolognese/tree/v.0.15.1) (2018-10-12)
1049
+
1050
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.15...v.0.15.1)
1051
+
1052
+ ## [v.0.15](https://github.com/datacite/bolognese/tree/v.0.15) (2018-10-12)
1053
+
1054
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.14.1...v.0.15)
1055
+
1056
+ ## [v.0.14.1](https://github.com/datacite/bolognese/tree/v.0.14.1) (2018-09-08)
1057
+
1058
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.14...v.0.14.1)
1059
+
1060
+ ## [v.0.14](https://github.com/datacite/bolognese/tree/v.0.14) (2018-09-08)
1061
+
1062
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.13.6...v.0.14)
1063
+
1064
+ **Fixed bugs:**
1065
+
1066
+ - Handle empty funderIdentifier tag [\#35](https://github.com/datacite/bolognese/issues/35)
1067
+
1068
+ ## [v.0.13.6](https://github.com/datacite/bolognese/tree/v.0.13.6) (2018-09-06)
1069
+
1070
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.13.5...v.0.13.6)
1071
+
1072
+ ## [v.0.13.5](https://github.com/datacite/bolognese/tree/v.0.13.5) (2018-09-05)
1073
+
1074
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.13.4...v.0.13.5)
1075
+
1076
+ ## [v.0.13.4](https://github.com/datacite/bolognese/tree/v.0.13.4) (2018-08-31)
1077
+
1078
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.13.3...v.0.13.4)
1079
+
1080
+ **Closed issues:**
1081
+
1082
+ - Generate metadata from gtex and topmed schema.org files [\#34](https://github.com/datacite/bolognese/issues/34)
1083
+
1084
+ ## [v.0.13.3](https://github.com/datacite/bolognese/tree/v.0.13.3) (2018-08-28)
1085
+
1086
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.13.2...v.0.13.3)
1087
+
1088
+ ## [v.0.13.2](https://github.com/datacite/bolognese/tree/v.0.13.2) (2018-08-28)
1089
+
1090
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.13.1...v.0.13.2)
1091
+
1092
+ ## [v.0.13.1](https://github.com/datacite/bolognese/tree/v.0.13.1) (2018-08-27)
1093
+
1094
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.13...v.0.13.1)
1095
+
1096
+ ## [v.0.13](https://github.com/datacite/bolognese/tree/v.0.13) (2018-08-27)
1097
+
1098
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.12.2...v.0.13)
1099
+
1100
+ **Closed issues:**
1101
+
1102
+ - Add support for content-url [\#33](https://github.com/datacite/bolognese/issues/33)
1103
+
1104
+ ## [v.0.12.2](https://github.com/datacite/bolognese/tree/v.0.12.2) (2018-08-22)
1105
+
1106
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.12.1...v.0.12.2)
1107
+
1108
+ ## [v.0.12.1](https://github.com/datacite/bolognese/tree/v.0.12.1) (2018-08-22)
1109
+
1110
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.12...v.0.12.1)
1111
+
1112
+ ## [v.0.12](https://github.com/datacite/bolognese/tree/v.0.12) (2018-08-22)
1113
+
1114
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.11.7...v.0.12)
1115
+
1116
+ ## [v.0.11.7](https://github.com/datacite/bolognese/tree/v.0.11.7) (2018-08-01)
1117
+
1118
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.11.16...v.0.11.7)
1119
+
1120
+ ## [v.0.11.16](https://github.com/datacite/bolognese/tree/v.0.11.16) (2018-08-01)
1121
+
1122
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.11.15...v.0.11.16)
1123
+
1124
+ ## [v.0.11.15](https://github.com/datacite/bolognese/tree/v.0.11.15) (2018-08-01)
1125
+
1126
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.11.14...v.0.11.15)
1127
+
1128
+ **Fixed bugs:**
1129
+
1130
+ - Handle xs:string attribute [\#32](https://github.com/datacite/bolognese/issues/32)
1131
+
1132
+ ## [v.0.11.14](https://github.com/datacite/bolognese/tree/v.0.11.14) (2018-07-28)
1133
+
1134
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.11.3...v.0.11.14)
1135
+
1136
+ ## [v.0.11.3](https://github.com/datacite/bolognese/tree/v.0.11.3) (2018-07-23)
1137
+
1138
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.11.2...v.0.11.3)
1139
+
1140
+ ## [v.0.11.2](https://github.com/datacite/bolognese/tree/v.0.11.2) (2018-07-23)
1141
+
1142
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.11.1...v.0.11.2)
1143
+
1144
+ ## [v.0.11.1](https://github.com/datacite/bolognese/tree/v.0.11.1) (2018-07-12)
1145
+
1146
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.11...v.0.11.1)
1147
+
1148
+ ## [v.0.11](https://github.com/datacite/bolognese/tree/v.0.11) (2018-07-12)
1149
+
1150
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.10.22...v.0.11)
1151
+
1152
+ ## [v.0.10.22](https://github.com/datacite/bolognese/tree/v.0.10.22) (2018-07-04)
1153
+
1154
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.10.21...v.0.10.22)
1155
+
1156
+ ## [v.0.10.21](https://github.com/datacite/bolognese/tree/v.0.10.21) (2018-06-21)
1157
+
1158
+ [Full Changelog](https://github.com/datacite/bolognese/compare/0.10.20...v.0.10.21)
1159
+
1160
+ ## [0.10.20](https://github.com/datacite/bolognese/tree/0.10.20) (2018-06-06)
1161
+
1162
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.10.19...0.10.20)
1163
+
1164
+ ## [v.0.10.19](https://github.com/datacite/bolognese/tree/v.0.10.19) (2018-06-04)
1165
+
1166
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.10.18...v.0.10.19)
1167
+
1168
+ **Closed issues:**
1169
+
1170
+ - support container\_title via series-information metadata [\#29](https://github.com/datacite/bolognese/issues/29)
1171
+
1172
+ ## [v.0.10.18](https://github.com/datacite/bolognese/tree/v.0.10.18) (2018-05-29)
1173
+
1174
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.10.17...v.0.10.18)
1175
+
1176
+ ## [v.0.10.17](https://github.com/datacite/bolognese/tree/v.0.10.17) (2018-05-29)
1177
+
1178
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.10.16...v.0.10.17)
1179
+
1180
+ ## [v.0.10.16](https://github.com/datacite/bolognese/tree/v.0.10.16) (2018-05-28)
1181
+
1182
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.10.15...v.0.10.16)
1183
+
1184
+ **Fixed bugs:**
1185
+
1186
+ - handle dois with + character in content negotiation [\#28](https://github.com/datacite/bolognese/issues/28)
1187
+
1188
+ ## [v.0.10.15](https://github.com/datacite/bolognese/tree/v.0.10.15) (2018-05-21)
1189
+
1190
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.10.14...v.0.10.15)
1191
+
1192
+ ## [v.0.10.14](https://github.com/datacite/bolognese/tree/v.0.10.14) (2018-05-19)
1193
+
1194
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.10.13...v.0.10.14)
1195
+
1196
+ **Fixed bugs:**
1197
+
1198
+ - Fix issues with ris and bibtex parser [\#26](https://github.com/datacite/bolognese/issues/26)
1199
+
1200
+ **Closed issues:**
1201
+
1202
+ - Support Crossref types in DataCite metadata [\#25](https://github.com/datacite/bolognese/issues/25)
1203
+
1204
+ **Merged pull requests:**
1205
+
1206
+ - csl-json: fix date parts label for empty date [\#27](https://github.com/datacite/bolognese/pull/27) ([larsgw](https://github.com/larsgw))
1207
+
1208
+ ## [v.0.10.13](https://github.com/datacite/bolognese/tree/v.0.10.13) (2018-05-18)
1209
+
1210
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.10.11...v.0.10.13)
1211
+
1212
+ ## [v.0.10.11](https://github.com/datacite/bolognese/tree/v.0.10.11) (2018-05-18)
1213
+
1214
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.10.10...v.0.10.11)
1215
+
1216
+ ## [v.0.10.10](https://github.com/datacite/bolognese/tree/v.0.10.10) (2018-05-18)
1217
+
1218
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.10.9...v.0.10.10)
1219
+
1220
+ ## [v.0.10.9](https://github.com/datacite/bolognese/tree/v.0.10.9) (2018-05-18)
1221
+
1222
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.10.8...v.0.10.9)
1223
+
1224
+ ## [v.0.10.8](https://github.com/datacite/bolognese/tree/v.0.10.8) (2018-05-18)
1225
+
1226
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.10.7...v.0.10.8)
1227
+
1228
+ ## [v.0.10.7](https://github.com/datacite/bolognese/tree/v.0.10.7) (2018-05-17)
1229
+
1230
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.10.6...v.0.10.7)
1231
+
1232
+ ## [v.0.10.6](https://github.com/datacite/bolognese/tree/v.0.10.6) (2018-05-09)
1233
+
1234
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.10.5...v.0.10.6)
1235
+
1236
+ ## [v.0.10.5](https://github.com/datacite/bolognese/tree/v.0.10.5) (2018-05-08)
1237
+
1238
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.10.4...v.0.10.5)
1239
+
1240
+ ## [v.0.10.4](https://github.com/datacite/bolognese/tree/v.0.10.4) (2018-05-08)
1241
+
1242
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.10.3...v.0.10.4)
1243
+
1244
+ ## [v.0.10.3](https://github.com/datacite/bolognese/tree/v.0.10.3) (2018-05-08)
1245
+
1246
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.10.2...v.0.10.3)
1247
+
1248
+ ## [v.0.10.2](https://github.com/datacite/bolognese/tree/v.0.10.2) (2018-05-07)
1249
+
1250
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.10.1...v.0.10.2)
1251
+
1252
+ ## [v.0.10.1](https://github.com/datacite/bolognese/tree/v.0.10.1) (2018-05-07)
1253
+
1254
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.10...v.0.10.1)
1255
+
1256
+ ## [v.0.10](https://github.com/datacite/bolognese/tree/v.0.10) (2018-05-07)
1257
+
1258
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.99...v.0.10)
1259
+
1260
+ ## [v.0.9.99](https://github.com/datacite/bolognese/tree/v.0.9.99) (2018-05-06)
1261
+
1262
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.98...v.0.9.99)
1263
+
1264
+ ## [v.0.9.98](https://github.com/datacite/bolognese/tree/v.0.9.98) (2018-05-06)
1265
+
1266
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.97...v.0.9.98)
1267
+
1268
+ ## [v.0.9.97](https://github.com/datacite/bolognese/tree/v.0.9.97) (2018-05-06)
1269
+
1270
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.96...v.0.9.97)
1271
+
1272
+ ## [v.0.9.96](https://github.com/datacite/bolognese/tree/v.0.9.96) (2018-05-05)
1273
+
1274
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.95...v.0.9.96)
1275
+
1276
+ **Closed issues:**
1277
+
1278
+ - Refactor metadata class as module [\#24](https://github.com/datacite/bolognese/issues/24)
1279
+
1280
+ ## [v.0.9.95](https://github.com/datacite/bolognese/tree/v.0.9.95) (2018-04-24)
1281
+
1282
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.94...v.0.9.95)
1283
+
1284
+ ## [v.0.9.94](https://github.com/datacite/bolognese/tree/v.0.9.94) (2018-04-23)
1285
+
1286
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.93...v.0.9.94)
1287
+
1288
+ **Closed issues:**
1289
+
1290
+ - \#10111 Query to datacite Content-Negotiation does not return subject [\#23](https://github.com/datacite/bolognese/issues/23)
1291
+ - Full Schema.org support in Bolognese library [\#15](https://github.com/datacite/bolognese/issues/15)
1292
+ - implementation details in the schema.org representation of articles [\#9](https://github.com/datacite/bolognese/issues/9)
1293
+
1294
+ ## [v.0.9.93](https://github.com/datacite/bolognese/tree/v.0.9.93) (2018-04-01)
1295
+
1296
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.92...v.0.9.93)
1297
+
1298
+ ## [v.0.9.92](https://github.com/datacite/bolognese/tree/v.0.9.92) (2018-03-18)
1299
+
1300
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.91...v.0.9.92)
1301
+
1302
+ ## [v.0.9.91](https://github.com/datacite/bolognese/tree/v.0.9.91) (2018-03-16)
1303
+
1304
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.90...v.0.9.91)
1305
+
1306
+ ## [v.0.9.90](https://github.com/datacite/bolognese/tree/v.0.9.90) (2018-03-16)
1307
+
1308
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.89...v.0.9.90)
1309
+
1310
+ ## [v.0.9.89](https://github.com/datacite/bolognese/tree/v.0.9.89) (2018-03-14)
1311
+
1312
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.88...v.0.9.89)
1313
+
1314
+ ## [v.0.9.88](https://github.com/datacite/bolognese/tree/v.0.9.88) (2018-03-14)
1315
+
1316
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.87...v.0.9.88)
1317
+
1318
+ ## [v.0.9.87](https://github.com/datacite/bolognese/tree/v.0.9.87) (2018-03-14)
1319
+
1320
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.86...v.0.9.87)
1321
+
1322
+ ## [v.0.9.86](https://github.com/datacite/bolognese/tree/v.0.9.86) (2018-03-14)
1323
+
1324
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.85...v.0.9.86)
1325
+
1326
+ ## [v.0.9.85](https://github.com/datacite/bolognese/tree/v.0.9.85) (2018-03-13)
1327
+
1328
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.84...v.0.9.85)
1329
+
1330
+ ## [v.0.9.84](https://github.com/datacite/bolognese/tree/v.0.9.84) (2018-03-11)
1331
+
1332
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.83...v.0.9.84)
1333
+
1334
+ ## [v.0.9.83](https://github.com/datacite/bolognese/tree/v.0.9.83) (2018-03-11)
1335
+
1336
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.82...v.0.9.83)
1337
+
1338
+ ## [v.0.9.82](https://github.com/datacite/bolognese/tree/v.0.9.82) (2018-03-07)
1339
+
1340
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.81...v.0.9.82)
1341
+
1342
+ ## [v.0.9.81](https://github.com/datacite/bolognese/tree/v.0.9.81) (2018-03-07)
1343
+
1344
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.80...v.0.9.81)
1345
+
1346
+ ## [v.0.9.80](https://github.com/datacite/bolognese/tree/v.0.9.80) (2018-03-06)
1347
+
1348
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.79...v.0.9.80)
1349
+
1350
+ ## [v.0.9.79](https://github.com/datacite/bolognese/tree/v.0.9.79) (2018-03-02)
1351
+
1352
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.78...v.0.9.79)
1353
+
1354
+ ## [v.0.9.78](https://github.com/datacite/bolognese/tree/v.0.9.78) (2018-03-02)
1355
+
1356
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.77...v.0.9.78)
1357
+
1358
+ ## [v.0.9.77](https://github.com/datacite/bolognese/tree/v.0.9.77) (2018-03-02)
1359
+
1360
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.76...v.0.9.77)
1361
+
1362
+ ## [v.0.9.76](https://github.com/datacite/bolognese/tree/v.0.9.76) (2018-02-25)
1363
+
1364
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.75...v.0.9.76)
1365
+
1366
+ ## [v.0.9.75](https://github.com/datacite/bolognese/tree/v.0.9.75) (2018-02-15)
1367
+
1368
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.74...v.0.9.75)
1369
+
1370
+ ## [v.0.9.74](https://github.com/datacite/bolognese/tree/v.0.9.74) (2018-02-09)
1371
+
1372
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.73...v.0.9.74)
1373
+
1374
+ **Merged pull requests:**
1375
+
1376
+ - Change to the regex to better support apostrophes in names. [\#22](https://github.com/datacite/bolognese/pull/22) ([richardhallett](https://github.com/richardhallett))
1377
+
1378
+ ## [v.0.9.73](https://github.com/datacite/bolognese/tree/v.0.9.73) (2018-01-14)
1379
+
1380
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.72...v.0.9.73)
1381
+
1382
+ ## [v.0.9.72](https://github.com/datacite/bolognese/tree/v.0.9.72) (2018-01-14)
1383
+
1384
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.71...v.0.9.72)
1385
+
1386
+ ## [v.0.9.71](https://github.com/datacite/bolognese/tree/v.0.9.71) (2018-01-13)
1387
+
1388
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.70...v.0.9.71)
1389
+
1390
+ ## [v.0.9.70](https://github.com/datacite/bolognese/tree/v.0.9.70) (2018-01-12)
1391
+
1392
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.69...v.0.9.70)
1393
+
1394
+ ## [v.0.9.69](https://github.com/datacite/bolognese/tree/v.0.9.69) (2018-01-11)
1395
+
1396
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.6.69...v.0.9.69)
1397
+
1398
+ ## [v.0.6.69](https://github.com/datacite/bolognese/tree/v.0.6.69) (2018-01-11)
1399
+
1400
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.68...v.0.6.69)
1401
+
1402
+ ## [v.0.9.68](https://github.com/datacite/bolognese/tree/v.0.9.68) (2018-01-11)
1403
+
1404
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.67...v.0.9.68)
1405
+
1406
+ **Closed issues:**
1407
+
1408
+ - Undefined method `dig' in read\_crossref [\#20](https://github.com/datacite/bolognese/issues/20)
1409
+
1410
+ ## [v.0.9.67](https://github.com/datacite/bolognese/tree/v.0.9.67) (2017-12-29)
1411
+
1412
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.66...v.0.9.67)
1413
+
1414
+ ## [v.0.9.66](https://github.com/datacite/bolognese/tree/v.0.9.66) (2017-12-29)
1415
+
1416
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.65...v.0.9.66)
1417
+
1418
+ **Closed issues:**
1419
+
1420
+ - Case study for JATS export [\#18](https://github.com/datacite/bolognese/issues/18)
1421
+
1422
+ **Merged pull requests:**
1423
+
1424
+ - Ruby 2.3 and Nokogiri 1.8.1 [\#21](https://github.com/datacite/bolognese/pull/21) ([mfenner](https://github.com/mfenner))
1425
+
1426
+ ## [v.0.9.65](https://github.com/datacite/bolognese/tree/v.0.9.65) (2017-12-15)
1427
+
1428
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.64...v.0.9.65)
1429
+
1430
+ **Closed issues:**
1431
+
1432
+ - inconsistent name parsing in JSON-LD conversion [\#16](https://github.com/datacite/bolognese/issues/16)
1433
+
1434
+ **Merged pull requests:**
1435
+
1436
+ - \[\#28\] Removing multi author support from parsing single author fields. [\#19](https://github.com/datacite/bolognese/pull/19) ([richardhallett](https://github.com/richardhallett))
1437
+
1438
+ ## [v.0.9.64](https://github.com/datacite/bolognese/tree/v.0.9.64) (2017-11-24)
1439
+
1440
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.63...v.0.9.64)
1441
+
1442
+ ## [v.0.9.63](https://github.com/datacite/bolognese/tree/v.0.9.63) (2017-11-11)
1443
+
1444
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.62...v.0.9.63)
1445
+
1446
+ ## [v.0.9.62](https://github.com/datacite/bolognese/tree/v.0.9.62) (2017-11-11)
1447
+
1448
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.61...v.0.9.62)
1449
+
1450
+ **Closed issues:**
1451
+
1452
+ - Bolognese at the RubyDataScience list [\#17](https://github.com/datacite/bolognese/issues/17)
1453
+
1454
+ ## [v.0.9.61](https://github.com/datacite/bolognese/tree/v.0.9.61) (2017-10-28)
1455
+
1456
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.60...v.0.9.61)
1457
+
1458
+ ## [v.0.9.60](https://github.com/datacite/bolognese/tree/v.0.9.60) (2017-10-28)
1459
+
1460
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.59...v.0.9.60)
1461
+
1462
+ ## [v.0.9.59](https://github.com/datacite/bolognese/tree/v.0.9.59) (2017-10-28)
1463
+
1464
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.58...v.0.9.59)
1465
+
1466
+ ## [v.0.9.58](https://github.com/datacite/bolognese/tree/v.0.9.58) (2017-10-28)
1467
+
1468
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.57...v.0.9.58)
1469
+
1470
+ ## [v.0.9.57](https://github.com/datacite/bolognese/tree/v.0.9.57) (2017-10-28)
1471
+
1472
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.56...v.0.9.57)
1473
+
1474
+ ## [v.0.9.56](https://github.com/datacite/bolognese/tree/v.0.9.56) (2017-10-21)
1475
+
1476
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.55...v.0.9.56)
1477
+
1478
+ ## [v.0.9.55](https://github.com/datacite/bolognese/tree/v.0.9.55) (2017-10-08)
1479
+
1480
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.54...v.0.9.55)
1481
+
1482
+ ## [v.0.9.54](https://github.com/datacite/bolognese/tree/v.0.9.54) (2017-09-25)
1483
+
1484
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.53...v.0.9.54)
1485
+
1486
+ ## [v.0.9.53](https://github.com/datacite/bolognese/tree/v.0.9.53) (2017-09-25)
1487
+
1488
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.52...v.0.9.53)
1489
+
1490
+ ## [v.0.9.52](https://github.com/datacite/bolognese/tree/v.0.9.52) (2017-09-25)
1491
+
1492
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.51...v.0.9.52)
1493
+
1494
+ ## [v.0.9.51](https://github.com/datacite/bolognese/tree/v.0.9.51) (2017-09-22)
1495
+
1496
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.50...v.0.9.51)
1497
+
1498
+ ## [v.0.9.50](https://github.com/datacite/bolognese/tree/v.0.9.50) (2017-09-14)
1499
+
1500
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.48...v.0.9.50)
1501
+
1502
+ ## [v.0.9.48](https://github.com/datacite/bolognese/tree/v.0.9.48) (2017-08-23)
1503
+
1504
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.47...v.0.9.48)
1505
+
1506
+ ## [v.0.9.47](https://github.com/datacite/bolognese/tree/v.0.9.47) (2017-08-23)
1507
+
1508
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.46...v.0.9.47)
1509
+
1510
+ ## [v.0.9.46](https://github.com/datacite/bolognese/tree/v.0.9.46) (2017-08-23)
1511
+
1512
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.45...v.0.9.46)
1513
+
1514
+ ## [v.0.9.45](https://github.com/datacite/bolognese/tree/v.0.9.45) (2017-08-23)
1515
+
1516
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.44...v.0.9.45)
1517
+
1518
+ ## [v.0.9.44](https://github.com/datacite/bolognese/tree/v.0.9.44) (2017-08-23)
1519
+
1520
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.43...v.0.9.44)
1521
+
1522
+ ## [v.0.9.43](https://github.com/datacite/bolognese/tree/v.0.9.43) (2017-08-05)
1523
+
1524
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.42...v.0.9.43)
1525
+
1526
+ ## [v.0.9.42](https://github.com/datacite/bolognese/tree/v.0.9.42) (2017-08-04)
1527
+
1528
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.41...v.0.9.42)
1529
+
1530
+ ## [v.0.9.41](https://github.com/datacite/bolognese/tree/v.0.9.41) (2017-08-03)
1531
+
1532
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.40...v.0.9.41)
1533
+
1534
+ ## [v.0.9.40](https://github.com/datacite/bolognese/tree/v.0.9.40) (2017-08-02)
1535
+
1536
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.39...v.0.9.40)
1537
+
1538
+ ## [v.0.9.39](https://github.com/datacite/bolognese/tree/v.0.9.39) (2017-07-30)
1539
+
1540
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.38...v.0.9.39)
1541
+
1542
+ ## [v.0.9.38](https://github.com/datacite/bolognese/tree/v.0.9.38) (2017-07-25)
1543
+
1544
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.37...v.0.9.38)
1545
+
1546
+ ## [v.0.9.37](https://github.com/datacite/bolognese/tree/v.0.9.37) (2017-07-25)
1547
+
1548
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.36...v.0.9.37)
1549
+
1550
+ ## [v.0.9.36](https://github.com/datacite/bolognese/tree/v.0.9.36) (2017-07-23)
1551
+
1552
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.35...v.0.9.36)
1553
+
1554
+ ## [v.0.9.35](https://github.com/datacite/bolognese/tree/v.0.9.35) (2017-07-23)
1555
+
1556
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.34...v.0.9.35)
1557
+
1558
+ ## [v.0.9.34](https://github.com/datacite/bolognese/tree/v.0.9.34) (2017-07-22)
1559
+
1560
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.33...v.0.9.34)
1561
+
1562
+ ## [v.0.9.33](https://github.com/datacite/bolognese/tree/v.0.9.33) (2017-07-22)
1563
+
1564
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.32...v.0.9.33)
1565
+
1566
+ ## [v.0.9.32](https://github.com/datacite/bolognese/tree/v.0.9.32) (2017-07-21)
1567
+
1568
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.31...v.0.9.32)
1569
+
1570
+ ## [v.0.9.31](https://github.com/datacite/bolognese/tree/v.0.9.31) (2017-07-10)
1571
+
1572
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.30...v.0.9.31)
1573
+
1574
+ ## [v.0.9.30](https://github.com/datacite/bolognese/tree/v.0.9.30) (2017-07-08)
1575
+
1576
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.29...v.0.9.30)
1577
+
1578
+ ## [v.0.9.29](https://github.com/datacite/bolognese/tree/v.0.9.29) (2017-07-08)
1579
+
1580
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.28...v.0.9.29)
1581
+
1582
+ ## [v.0.9.28](https://github.com/datacite/bolognese/tree/v.0.9.28) (2017-06-25)
1583
+
1584
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.27...v.0.9.28)
1585
+
1586
+ ## [v.0.9.27](https://github.com/datacite/bolognese/tree/v.0.9.27) (2017-06-25)
1587
+
1588
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.26...v.0.9.27)
1589
+
1590
+ ## [v.0.9.26](https://github.com/datacite/bolognese/tree/v.0.9.26) (2017-06-20)
1591
+
1592
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.25...v.0.9.26)
1593
+
1594
+ ## [v.0.9.25](https://github.com/datacite/bolognese/tree/v.0.9.25) (2017-06-20)
1595
+
1596
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.24...v.0.9.25)
1597
+
1598
+ ## [v.0.9.24](https://github.com/datacite/bolognese/tree/v.0.9.24) (2017-06-20)
1599
+
1600
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.23...v.0.9.24)
1601
+
1602
+ ## [v.0.9.23](https://github.com/datacite/bolognese/tree/v.0.9.23) (2017-06-20)
1603
+
1604
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.22...v.0.9.23)
1605
+
1606
+ ## [v.0.9.22](https://github.com/datacite/bolognese/tree/v.0.9.22) (2017-06-05)
1607
+
1608
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.21...v.0.9.22)
1609
+
1610
+ **Closed issues:**
1611
+
1612
+ - Fix error handling alternate names in ris writer [\#14](https://github.com/datacite/bolognese/issues/14)
1613
+ - Error displaying container-title [\#13](https://github.com/datacite/bolognese/issues/13)
1614
+ - Error parsing funding information [\#12](https://github.com/datacite/bolognese/issues/12)
1615
+ - crossref author id to orcid id? [\#10](https://github.com/datacite/bolognese/issues/10)
1616
+ - datacite: support subjectScheme and subjectURI [\#4](https://github.com/datacite/bolognese/issues/4)
1617
+
1618
+ ## [v.0.9.21](https://github.com/datacite/bolognese/tree/v.0.9.21) (2017-06-03)
1619
+
1620
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.20...v.0.9.21)
1621
+
1622
+ **Closed issues:**
1623
+
1624
+ - Abstract should be a string in Citeproc writer [\#11](https://github.com/datacite/bolognese/issues/11)
1625
+ - the Bolognese gem doesn't properly handle the optional language attribute. [\#8](https://github.com/datacite/bolognese/issues/8)
1626
+ - Support funding information [\#7](https://github.com/datacite/bolognese/issues/7)
1627
+ - datacite: support xml:lang in title [\#3](https://github.com/datacite/bolognese/issues/3)
1628
+
1629
+ ## [v.0.9.20](https://github.com/datacite/bolognese/tree/v.0.9.20) (2017-05-13)
1630
+
1631
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.19...v.0.9.20)
1632
+
1633
+ ## [v.0.9.19](https://github.com/datacite/bolognese/tree/v.0.9.19) (2017-05-12)
1634
+
1635
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.18...v.0.9.19)
1636
+
1637
+ **Closed issues:**
1638
+
1639
+ - Use standard metadata representation with readers and writers [\#5](https://github.com/datacite/bolognese/issues/5)
1640
+
1641
+ ## [v.0.9.18](https://github.com/datacite/bolognese/tree/v.0.9.18) (2017-05-12)
1642
+
1643
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.17...v.0.9.18)
1644
+
1645
+ ## [v.0.9.17](https://github.com/datacite/bolognese/tree/v.0.9.17) (2017-05-08)
1646
+
1647
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.16...v.0.9.17)
1648
+
1649
+ ## [v.0.9.16](https://github.com/datacite/bolognese/tree/v.0.9.16) (2017-05-08)
1650
+
1651
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.15...v.0.9.16)
1652
+
1653
+ ## [v.0.9.15](https://github.com/datacite/bolognese/tree/v.0.9.15) (2017-05-07)
1654
+
1655
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.14...v.0.9.15)
1656
+
1657
+ ## [v.0.9.14](https://github.com/datacite/bolognese/tree/v.0.9.14) (2017-05-07)
1658
+
1659
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.13...v.0.9.14)
1660
+
1661
+ ## [v.0.9.13](https://github.com/datacite/bolognese/tree/v.0.9.13) (2017-05-07)
1662
+
1663
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.12...v.0.9.13)
1664
+
1665
+ ## [v.0.9.12](https://github.com/datacite/bolognese/tree/v.0.9.12) (2017-05-07)
1666
+
1667
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.11...v.0.9.12)
1668
+
1669
+ ## [v.0.9.11](https://github.com/datacite/bolognese/tree/v.0.9.11) (2017-05-06)
1670
+
1671
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.10...v.0.9.11)
1672
+
1673
+ ## [v.0.9.10](https://github.com/datacite/bolognese/tree/v.0.9.10) (2017-05-06)
1674
+
1675
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.9...v.0.9.10)
1676
+
1677
+ ## [v.0.9.9](https://github.com/datacite/bolognese/tree/v.0.9.9) (2017-05-06)
1678
+
1679
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.8...v.0.9.9)
1680
+
1681
+ **Merged pull requests:**
1682
+
1683
+ - Refactor into readers and writers. [\#6](https://github.com/datacite/bolognese/pull/6) ([mfenner](https://github.com/mfenner))
1684
+
1685
+ ## [v.0.9.8](https://github.com/datacite/bolognese/tree/v.0.9.8) (2017-04-25)
1686
+
1687
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.7...v.0.9.8)
1688
+
1689
+ ## [v.0.9.7](https://github.com/datacite/bolognese/tree/v.0.9.7) (2017-04-24)
1690
+
1691
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.6...v.0.9.7)
1692
+
1693
+ ## [v.0.9.6](https://github.com/datacite/bolognese/tree/v.0.9.6) (2017-04-24)
1694
+
1695
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.5...v.0.9.6)
1696
+
1697
+ ## [v.0.9.5](https://github.com/datacite/bolognese/tree/v.0.9.5) (2017-04-22)
1698
+
1699
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.4...v.0.9.5)
1700
+
1701
+ ## [v.0.9.4](https://github.com/datacite/bolognese/tree/v.0.9.4) (2017-04-20)
1702
+
1703
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.3...v.0.9.4)
1704
+
1705
+ ## [v.0.9.3](https://github.com/datacite/bolognese/tree/v.0.9.3) (2017-04-18)
1706
+
1707
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.2...v.0.9.3)
1708
+
1709
+ ## [v.0.9.2](https://github.com/datacite/bolognese/tree/v.0.9.2) (2017-04-16)
1710
+
1711
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9.1...v.0.9.2)
1712
+
1713
+ ## [v.0.9.1](https://github.com/datacite/bolognese/tree/v.0.9.1) (2017-04-16)
1714
+
1715
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.9...v.0.9.1)
1716
+
1717
+ ## [v.0.9](https://github.com/datacite/bolognese/tree/v.0.9) (2017-04-15)
1718
+
1719
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.8.13...v.0.9)
1720
+
1721
+ ## [v.0.8.13](https://github.com/datacite/bolognese/tree/v.0.8.13) (2017-04-11)
1722
+
1723
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.8.12...v.0.8.13)
1724
+
1725
+ ## [v.0.8.12](https://github.com/datacite/bolognese/tree/v.0.8.12) (2017-04-10)
1726
+
1727
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.8.11...v.0.8.12)
1728
+
1729
+ ## [v.0.8.11](https://github.com/datacite/bolognese/tree/v.0.8.11) (2017-04-09)
1730
+
1731
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.8.10...v.0.8.11)
1732
+
1733
+ ## [v.0.8.10](https://github.com/datacite/bolognese/tree/v.0.8.10) (2017-04-09)
1734
+
1735
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.8.9...v.0.8.10)
1736
+
1737
+ ## [v.0.8.9](https://github.com/datacite/bolognese/tree/v.0.8.9) (2017-04-09)
1738
+
1739
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.8.7...v.0.8.9)
1740
+
1741
+ ## [v.0.8.7](https://github.com/datacite/bolognese/tree/v.0.8.7) (2017-04-09)
1742
+
1743
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.8.5...v.0.8.7)
1744
+
1745
+ ## [v.0.8.5](https://github.com/datacite/bolognese/tree/v.0.8.5) (2017-03-12)
1746
+
1747
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.8.4...v.0.8.5)
1748
+
1749
+ ## [v.0.8.4](https://github.com/datacite/bolognese/tree/v.0.8.4) (2017-03-12)
1750
+
1751
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.8.3...v.0.8.4)
1752
+
1753
+ ## [v.0.8.3](https://github.com/datacite/bolognese/tree/v.0.8.3) (2017-03-12)
1754
+
1755
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.8.2...v.0.8.3)
1756
+
1757
+ ## [v.0.8.2](https://github.com/datacite/bolognese/tree/v.0.8.2) (2017-03-02)
1758
+
1759
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.8.1...v.0.8.2)
1760
+
1761
+ **Closed issues:**
1762
+
1763
+ - Support schema.org @reverse relations [\#2](https://github.com/datacite/bolognese/issues/2)
1764
+ - Add basic support for codemeta [\#1](https://github.com/datacite/bolognese/issues/1)
1765
+
1766
+ ## [v.0.8.1](https://github.com/datacite/bolognese/tree/v.0.8.1) (2017-03-01)
1767
+
1768
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.8...v.0.8.1)
1769
+
1770
+ ## [v.0.8](https://github.com/datacite/bolognese/tree/v.0.8) (2017-03-01)
1771
+
1772
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.7.2...v.0.8)
1773
+
1774
+ ## [v.0.7.2](https://github.com/datacite/bolognese/tree/v.0.7.2) (2017-02-25)
1775
+
1776
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.7.1...v.0.7.2)
1777
+
1778
+ ## [v.0.7.1](https://github.com/datacite/bolognese/tree/v.0.7.1) (2017-02-24)
1779
+
1780
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.7.0...v.0.7.1)
1781
+
1782
+ ## [v.0.7.0](https://github.com/datacite/bolognese/tree/v.0.7.0) (2017-02-24)
1783
+
1784
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.6.6...v.0.7.0)
1785
+
1786
+ ## [v.0.6.6](https://github.com/datacite/bolognese/tree/v.0.6.6) (2017-02-23)
1787
+
1788
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.6.5...v.0.6.6)
1789
+
1790
+ ## [v.0.6.5](https://github.com/datacite/bolognese/tree/v.0.6.5) (2017-02-22)
1791
+
1792
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.6.4...v.0.6.5)
1793
+
1794
+ ## [v.0.6.4](https://github.com/datacite/bolognese/tree/v.0.6.4) (2017-02-22)
1795
+
1796
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.6.3...v.0.6.4)
1797
+
1798
+ ## [v.0.6.3](https://github.com/datacite/bolognese/tree/v.0.6.3) (2017-02-22)
1799
+
1800
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.6.2...v.0.6.3)
1801
+
1802
+ ## [v.0.6.2](https://github.com/datacite/bolognese/tree/v.0.6.2) (2017-02-22)
1803
+
1804
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.6.1...v.0.6.2)
1805
+
1806
+ ## [v.0.6.1](https://github.com/datacite/bolognese/tree/v.0.6.1) (2017-02-22)
1807
+
1808
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.6...v.0.6.1)
1809
+
1810
+ ## [v.0.6](https://github.com/datacite/bolognese/tree/v.0.6) (2017-02-22)
1811
+
1812
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.5.3...v.0.6)
1813
+
1814
+ ## [v.0.5.3](https://github.com/datacite/bolognese/tree/v.0.5.3) (2017-02-21)
1815
+
1816
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.5.2...v.0.5.3)
1817
+
1818
+ ## [v.0.5.2](https://github.com/datacite/bolognese/tree/v.0.5.2) (2017-02-21)
1819
+
1820
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.5.1...v.0.5.2)
1821
+
1822
+ ## [v.0.5.1](https://github.com/datacite/bolognese/tree/v.0.5.1) (2017-02-19)
1823
+
1824
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.5...v.0.5.1)
1825
+
1826
+ ## [v.0.5](https://github.com/datacite/bolognese/tree/v.0.5) (2017-02-19)
1827
+
1828
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.4.3...v.0.5)
1829
+
1830
+ ## [v.0.4.3](https://github.com/datacite/bolognese/tree/v.0.4.3) (2017-02-18)
1831
+
1832
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.4.2...v.0.4.3)
1833
+
1834
+ ## [v.0.4.2](https://github.com/datacite/bolognese/tree/v.0.4.2) (2017-02-18)
1835
+
1836
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.4.1...v.0.4.2)
1837
+
1838
+ ## [v.0.4.1](https://github.com/datacite/bolognese/tree/v.0.4.1) (2017-02-18)
1839
+
1840
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.4...v.0.4.1)
1841
+
1842
+ ## [v.0.4](https://github.com/datacite/bolognese/tree/v.0.4) (2017-02-18)
1843
+
1844
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.3...v.0.4)
1845
+
1846
+ ## [v.0.3](https://github.com/datacite/bolognese/tree/v.0.3) (2017-02-17)
1847
+
1848
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.2.1...v.0.3)
1849
+
1850
+ ## [v.0.2.1](https://github.com/datacite/bolognese/tree/v.0.2.1) (2017-02-16)
1851
+
1852
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.2...v.0.2.1)
1853
+
1854
+ ## [v.0.2](https://github.com/datacite/bolognese/tree/v.0.2) (2017-02-16)
1855
+
1856
+ [Full Changelog](https://github.com/datacite/bolognese/compare/v.0.1...v.0.2)
1857
+
1858
+ ## [v.0.1](https://github.com/datacite/bolognese/tree/v.0.1) (2017-02-13)
1859
+
1860
+ [Full Changelog](https://github.com/datacite/bolognese/compare/d1adb0353c9b3abd0b8f64fed5e0970cf03b537c...v.0.1)
1861
+
1862
+
1863
+
1864
+ \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*