Skip to content

Commit

Permalink
Bump de.undercouch:citeproc-java from 3.1.0 to 3.2.0 (#12347)
Browse files Browse the repository at this point in the history
* Bump de.undercouch:citeproc-java from 3.1.0 to 3.2.0

Bumps [de.undercouch:citeproc-java](https://github.com/michel-kraemer/citeproc-java) from 3.1.0 to 3.2.0.
- [Release notes](https://github.com/michel-kraemer/citeproc-java/releases)
- [Commits](https://github.com/michel-kraemer/citeproc-java/commits)

---
updated-dependencies:
- dependency-name: de.undercouch:citeproc-java
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Trial commit: run tests on CI

* Fix tests

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Subhramit Basu Bhowmick <[email protected]>
  • Loading branch information
dependabot[bot] and subhramit authored Jan 3, 2025
1 parent e3e575d commit 654622a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ dependencies {
// route all requests to log4j to SLF4J
implementation 'org.apache.logging.log4j:log4j-to-slf4j:2.24.3'

implementation('de.undercouch:citeproc-java:3.1.0') {
implementation('de.undercouch:citeproc-java:3.2.0') {
exclude group: 'org.antlr'
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ static Stream<Arguments> ooHTMLTransformFromRawBibliography() {

// Small-caps
Arguments.of(
" <smallcaps>Smith</smallcaps>, <smallcaps>B.</smallcaps>, <smallcaps>Jones</smallcaps>, <smallcaps>B.</smallcaps>, <smallcaps>Williams</smallcaps>, <smallcaps>J.</smallcaps> (2016) Title of the test entry <smallcaps>Taylor</smallcaps>, <smallcaps>P.</smallcaps> (ed.). <i>BibTeX Journal</i>, 34(3), pp. 45–67.<p></p>",
" <smallcaps>Smith</smallcaps>, <smallcaps>B.</smallcaps>, <smallcaps>Jones</smallcaps>, <smallcaps>B.</smallcaps> and <smallcaps>Williams</smallcaps>, <smallcaps>J.</smallcaps> (2016) Title of the test entry <smallcaps>Taylor</smallcaps>, <smallcaps>P.</smallcaps> (ed.). <i>BibTeX Journal</i>, 34(3), pp. 45–67.<p></p>",
STYLE_LIST.stream().filter(e -> "De Montfort University - Harvard".equals(e.getTitle())).findAny().get()
),

Expand Down Expand Up @@ -305,12 +305,12 @@ static Stream<Arguments> ooHTMLTransformFromCitationWithSingleEntry() {
),

Arguments.of(
"(Smith, Jones, Williams, 2016)",
"(Smith, Jones and Williams, 2016)",
STYLE_LIST.stream().filter(e -> "De Montfort University - Harvard".equals(e.getTitle())).findAny().get()
),

Arguments.of(
"(Smith, Jones, & Williams)",
"(Smith, Jones, & Williams, “Title of the test entry”)",
STYLE_LIST.stream().filter(e -> "Modern Language Association 7th edition (underline)".equals(e.getTitle())).findAny().get()
),

Expand Down Expand Up @@ -429,12 +429,12 @@ static Stream<Arguments> ooHTMLTransformFromCitationWithMultipleEntries() {
),

Arguments.of(
"(Garcia, Lee, 2021; Smith, Johnson, 2020)",
"(Garcia and Lee, 2021; Smith and Johnson, 2020)",
STYLE_LIST.stream().filter(e -> "De Montfort University - Harvard".equals(e.getTitle())).findAny().get()
),

Arguments.of(
"(Garcia & Lee; Smith & Johnson)",
"(Garcia & Lee, “Quantum Entanglement in Superconductors”; Smith & Johnson, “A Study on Machine Learning Algorithms”)",
STYLE_LIST.stream().filter(e -> "Modern Language Association 7th edition (underline)".equals(e.getTitle())).findAny().get()
),

Expand Down

0 comments on commit 654622a

Please sign in to comment.