Skip to content

Commit 3f157e3

Browse files
committed
Bump version to 1.3.4+dev
2 parents 1cc8159 + 5efd7a0 commit 3f157e3

File tree

8 files changed

+77
-60
lines changed

8 files changed

+77
-60
lines changed

.github/workflows/PkgEval.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
steps:
14-
- uses: julia-actions/setup-julia@v1
14+
- uses: julia-actions/setup-julia@v2
1515
with:
1616
version: '1'
17+
- uses: julia-actions/cache@v2
1718
- uses: actions/checkout@v4
1819
with:
1920
repository: 'JuliaCI/PkgEval.jl'

.github/workflows/ci.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ jobs:
3131
version: '1'
3232
steps:
3333
- uses: actions/checkout@v4
34-
- uses: julia-actions/setup-julia@v1
34+
- uses: julia-actions/setup-julia@v2
3535
with:
3636
version: ${{ matrix.version }}
37-
- uses: julia-actions/cache@v1
37+
- uses: julia-actions/cache@v2
3838
- name: "Instantiate test environment"
3939
run: julia --project=test devrepl.jl
4040
- name: "Run tests"
@@ -44,18 +44,19 @@ jobs:
4444
- uses: julia-actions/julia-processcoverage@v1
4545
- name: "Summarize coverage"
4646
run: julia --project=test -L devrepl.jl -e 'show_coverage()'
47-
- uses: codecov/codecov-action@v3
47+
- uses: codecov/codecov-action@v4
4848
with:
4949
files: lcov.info
50+
token: ${{ secrets.CODECOV_TOKEN }}
5051
testoldest:
5152
name: Test Lower Compat Bounds
5253
runs-on: ubuntu-latest
5354
steps:
5455
- uses: actions/checkout@v4
55-
- uses: julia-actions/setup-julia@v1
56+
- uses: julia-actions/setup-julia@v2
5657
with:
5758
version: 1.6
58-
- uses: julia-actions/cache@v1
59+
- uses: julia-actions/cache@v2
5960
- name: "Instantiate test environment"
6061
shell: julia --project=test {0}
6162
run: |
@@ -85,7 +86,7 @@ jobs:
8586
pages: write
8687
steps:
8788
- uses: actions/checkout@v4
88-
- uses: julia-actions/setup-julia@v1
89+
- uses: julia-actions/setup-julia@v2
8990
with:
9091
version: '1'
9192
- name: "Instantiate test environment"
@@ -95,7 +96,7 @@ jobs:
9596
env:
9697
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9798
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
98-
- uses: actions/upload-artifact@v3
99+
- uses: actions/upload-artifact@v4
99100
with:
100101
name: documenter-citations-docs
101102
path: docs/build/
@@ -104,7 +105,7 @@ jobs:
104105
runs-on: ubuntu-latest
105106
steps:
106107
- uses: actions/checkout@v4
107-
- uses: julia-actions/setup-julia@v1
108+
- uses: julia-actions/setup-julia@v2
108109
with:
109110
version: '1'
110111
- name: Install JuliaFormatter and format

NEWS.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
## [Unreleased][]
88

99

10+
## [Version 1.3.4][1.3.4] - 2024-09-19
11+
12+
### Internal Changes
13+
14+
* Added an `article_link_doi_in_title` option to the internal `format_published_in` and `format_labeled_bibliography_reference` functions. This allows custom styles to change how links appear in bibliography entries for articles. By setting the option to `true`, the title of the article,instead of the "published in" information, will be used as the link text for a DOI . This makes the bibliography for articles more consistent with other types or entries, but is recommended only if no entries have both a DOI and a URL. [[#73][], [#74][]]
15+
16+
1017
## [Version 1.3.3][1.3.3] - 2024-03-08
1118

1219
### Fixed
@@ -152,7 +159,8 @@ There were several bugs and limitations in version `1.2.x` for which some existi
152159
* [DocumenterCitations](https://github.com/JuliaDocs/DocumenterCitations.jl) is now hosted under the [JuliaDocs](https://github.com/JuliaDocs) organization.
153160

154161

155-
[Unreleased]: https://github.com/JuliaDocs/DocumenterCitations.jl/compare/v1.3.3...HEAD
162+
[Unreleased]: https://github.com/JuliaDocs/DocumenterCitations.jl/compare/v1.3.4...HEAD
163+
[1.3.4]: https://github.com/JuliaDocs/DocumenterCitations.jl/compare/v1.3.3...v1.3.4
156164
[1.3.3]: https://github.com/JuliaDocs/DocumenterCitations.jl/compare/v1.3.2...v1.3.3
157165
[1.3.2]: https://github.com/JuliaDocs/DocumenterCitations.jl/compare/v1.3.1...v1.3.2
158166
[1.3.1]: https://github.com/JuliaDocs/DocumenterCitations.jl/compare/v1.3.0...v1.3.1
@@ -161,6 +169,8 @@ There were several bugs and limitations in version `1.2.x` for which some existi
161169
[1.2.0]: https://github.com/JuliaDocs/DocumenterCitations.jl/compare/v1.1.0...v1.2.0
162170
[1.1.0]: https://github.com/JuliaDocs/DocumenterCitations.jl/compare/v1.0.0...v1.1.0
163171
[1.0.0]: https://github.com/JuliaDocs/DocumenterCitations.jl/compare/v0.2.12...v1.0.0
172+
[#74]: https://github.com/JuliaDocs/DocumenterCitations.jl/pull/74
173+
[#73]: https://github.com/JuliaDocs/DocumenterCitations.jl/issues/73
164174
[#70]: https://github.com/JuliaDocs/DocumenterCitations.jl/pull/70
165175
[#65]: https://github.com/JuliaDocs/DocumenterCitations.jl/pull/65
166176
[#62]: https://github.com/JuliaDocs/DocumenterCitations.jl/pull/62

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.3+dev"
4+
version = "1.3.4+dev"
55

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

docs/src/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ Clicking on the citations takes you to the bibliography ("[References](@ref)").
133133
The following is a list of some projects that use `DocumenterCitations`:
134134

135135
* [Oceananigans](https://clima.github.io/OceananigansDocumentation/stable/)
136+
* [OSCAR](https://docs.oscar-system.org/stable/)
136137
* [QuantumPropagators](https://juliaquantumcontrol.github.io/QuantumPropagators.jl/)
137138
* [QuantumControl](https://juliaquantumcontrol.github.io/QuantumControl.jl/)
138139
* [TwoQubitWeylChamber](https://juliaquantumcontrol.github.io/TwoQubitWeylChamber.jl/)

src/labeled_styles_utils.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,8 +236,8 @@ mdstr = format_labeled_bibliography_reference(
236236
(Booktitle, Series) field. Strings enclosed in braces are protected
237237
from the transformation.
238238
* `article_link_doi_in_title`: If `false`, the URL is linked to the title for
239-
Article entries, and the DOI is linked to the published-in. If `true`,
240-
Article entries are handled as other entries, i.e. the first available URL
239+
Article entries, and the DOI is linked to the published-in. If `true`,
240+
Article entries are handled as other entries, i.e., the first available URL
241241
(URL or, if no URL available, DOI) is linked to the title, while only in
242242
the presence of both, the DOI is linked to the published-in.
243243
"""

src/styles/authoryear.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ mdstr = format_authoryear_bibliography_reference(
130130
from the transformation.
131131
* `article_link_doi_in_title`: If `false`, the URL is linked to the title for
132132
Article entries, and the DOI is linked to the published-in. If `true`,
133-
Article entries are handled as other entries, i.e. the first available URL
133+
Article entries are handled as other entries, i.e., the first available URL
134134
(URL or, if no URL available, DOI) is linked to the title, while only in
135135
the presence of both, the DOI is linked to the published-in.
136136
"""

0 commit comments

Comments
 (0)