Skip to content

Commit d4c2a20

Browse files
committed
Bump version to 1.3.6+dev
2 parents b3b45bf + 1611193 commit d4c2a20

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

.github/workflows/PkgEval.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
@show config
3232
@show package
3333
println("##################################################")
34-
result = PkgEval.evaluate_test(config, package; echo=true)
34+
result = PkgEval.evaluate([config], [package]; echo=true)
3535
println("##################################################")
3636
@show result.version
3737
@show result.duration

NEWS.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
44
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

66

7-
## [Unreleased][]
7+
## [Unreleased][] - 2025-03-01
8+
9+
10+
## [Version 1.3.6][1.3.6] - 2025-03-01
11+
12+
### Fixed
13+
14+
* The `format_authoryear_bibliography_reference` function with `article_link_doi_in_title = true` would link the DOI both from the journal reference and from the title. Now, the DOI is linked from the journal when `article_link_doi_in_title = false` and from the title when `article_link_doi_in_title = true`. [[#87][]]
815

916

1017
## [Version 1.3.5][1.3.5] - 2024-11-14
@@ -171,7 +178,8 @@ There were several bugs and limitations in version `1.2.x` for which some existi
171178
* [DocumenterCitations](https://github.com/JuliaDocs/DocumenterCitations.jl) is now hosted under the [JuliaDocs](https://github.com/JuliaDocs) organization.
172179

173180

174-
[Unreleased]: https://github.com/JuliaDocs/DocumenterCitations.jl/compare/v1.3.5...HEAD
181+
[Unreleased]: https://github.com/JuliaDocs/DocumenterCitations.jl/compare/v1.3.6...HEAD
182+
[1.3.6]: https://github.com/JuliaDocs/DocumenterCitations.jl/compare/v1.3.5...v1.3.6
175183
[1.3.5]: https://github.com/JuliaDocs/DocumenterCitations.jl/compare/v1.3.4...v1.3.5
176184
[1.3.4]: https://github.com/JuliaDocs/DocumenterCitations.jl/compare/v1.3.3...v1.3.4
177185
[1.3.3]: https://github.com/JuliaDocs/DocumenterCitations.jl/compare/v1.3.2...v1.3.3
@@ -182,6 +190,7 @@ There were several bugs and limitations in version `1.2.x` for which some existi
182190
[1.2.0]: https://github.com/JuliaDocs/DocumenterCitations.jl/compare/v1.1.0...v1.2.0
183191
[1.1.0]: https://github.com/JuliaDocs/DocumenterCitations.jl/compare/v1.0.0...v1.1.0
184192
[1.0.0]: https://github.com/JuliaDocs/DocumenterCitations.jl/compare/v0.2.12...v1.0.0
193+
[#87]: https://github.com/JuliaDocs/DocumenterCitations.jl/pull/87
185194
[#83]: https://github.com/JuliaDocs/DocumenterCitations.jl/pull/83
186195
[#80]: https://github.com/JuliaDocs/DocumenterCitations.jl/issues/80
187196
[#79]: https://github.com/JuliaDocs/DocumenterCitations.jl/pull/79

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "DocumenterCitations"
22
uuid = "daee34ce-89f3-4625-b898-19384cb65244"
33
authors = ["Michael Goerz <mail@michaelgoerz.net>"]
4-
version = "1.3.5+dev"
4+
version = "1.3.6+dev"
55

66
[deps]
77
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"

src/citation_link.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ parses the given `link` string of the form `[text](@cite key)`.
9292
"""
9393
struct DirectCitationLink
9494
node::MarkdownAST.Node # the original markdown link
95-
key::String # bibtex cite keys
95+
key::String # BibTeX cite keys
9696
end
9797

9898

0 commit comments

Comments
 (0)