Skip to content

Commit 8695cbf

Browse files
authored
all: release 0.3.0 (#108)
1 parent ad0182d commit 8695cbf

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

.zenodo.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"title": "mmcloughlin/addchain: v0.2.0",
2+
"title": "mmcloughlin/addchain: v0.3.0",
33
"description": "Cryptographic Addition Chain Generation in Go",
4-
"version": "0.2.0",
5-
"publication_date": "2021-04-05",
4+
"version": "0.3.0",
5+
"publication_date": "2021-05-13",
66
"upload_type": "software",
77
"access_right": "open",
88
"license": "BSD-3-Clause",
@@ -14,7 +14,7 @@
1414
],
1515
"related_identifiers": [
1616
{
17-
"identifier": "https://github.com/mmcloughlin/addchain/tree/v0.2.0",
17+
"identifier": "https://github.com/mmcloughlin/addchain/tree/v0.3.0",
1818
"relation": "isSupplementTo",
1919
"scheme": "url"
2020
}

CITATION.bib

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ @misc{addchain
22
title = {addchain: Cryptographic Addition Chain Generation in Go},
33
author = {Michael B. McLoughlin},
44
year = 2021,
5-
month = apr,
5+
month = may,
66
howpublished = {Github repository \url{https://github.com/mmcloughlin/addchain}},
7-
version = {0.2.0},
7+
version = {0.3.0},
88
license = {BSD 3-Clause License},
9-
doi = {10.5281/zenodo.4662389},
10-
url = {https://doi.org/10.5281/zenodo.4662389},
9+
doi = {10.5281/zenodo.4758226},
10+
url = {https://doi.org/10.5281/zenodo.4758226},
1111
}

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<img src="https://img.shields.io/github/workflow/status/mmcloughlin/addchain/ci/master.svg?style=flat-square" alt="Build Status" />
55
<a href="https://pkg.go.dev/github.com/mmcloughlin/addchain"><img src="https://img.shields.io/badge/doc-reference-007d9b?logo=go&style=flat-square" alt="go.dev" /></a>
66
<a href="https://goreportcard.com/report/github.com/mmcloughlin/addchain"><img src="https://goreportcard.com/badge/github.com/mmcloughlin/addchain?style=flat-square" alt="Go Report Card" /></a>
7-
<a href="https://doi.org/10.5281/zenodo.4662389"><img src="https://img.shields.io/badge/DOI-10.5281%2Fzenodo.4662389-007ec6?style=flat-square" alt="DOI: 10.5281/zenodo.4662389" /></a>
7+
<a href="https://doi.org/10.5281/zenodo.4758226"><img src="https://img.shields.io/badge/DOI-10.5281%2Fzenodo.4758226-007ec6?style=flat-square" alt="DOI: 10.5281/zenodo.4758226" /></a>
88
</p>
99

1010
<p align="center">Cryptographic Addition Chain Generation in Go</p>
@@ -353,20 +353,20 @@ chains](https://github.com/mmcloughlin/addchain/issues/24)?
353353
If you use `addchain` in your research a citation would be appreciated.
354354
Citing a specific release is preferred, since they are [archived on
355355
Zenodo](https://doi.org/10.5281/zenodo.4625263) and assigned a DOI. Please use the
356-
following BibTeX to cite the most recent [0.2.0
357-
release](https://github.com/mmcloughlin/addchain/releases/tag/v0.2.0).
356+
following BibTeX to cite the most recent [0.3.0
357+
release](https://github.com/mmcloughlin/addchain/releases/tag/v0.3.0).
358358

359359
```bib
360360
@misc{addchain,
361361
title = {addchain: Cryptographic Addition Chain Generation in Go},
362362
author = {Michael B. McLoughlin},
363363
year = 2021,
364-
month = apr,
364+
month = may,
365365
howpublished = {Github repository \url{https://github.com/mmcloughlin/addchain}},
366-
version = {0.2.0},
366+
version = {0.3.0},
367367
license = {BSD 3-Clause License},
368-
doi = {10.5281/zenodo.4662389},
369-
url = {https://doi.org/10.5281/zenodo.4662389},
368+
doi = {10.5281/zenodo.4758226},
369+
url = {https://doi.org/10.5281/zenodo.4758226},
370370
}
371371
```
372372

internal/meta/vars.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ package meta
22

33
var (
44
buildversion = ""
5-
releaseversion = "0.2.0"
6-
releasedate = "2021-04-05"
5+
releaseversion = "0.3.0"
6+
releasedate = "2021-05-13"
77
conceptdoi = "10.5281/zenodo.4625263"
8-
doi = "10.5281/zenodo.4662389"
9-
zenodoid = "4662389"
8+
doi = "10.5281/zenodo.4758226"
9+
zenodoid = "4758226"
1010
)

0 commit comments

Comments
 (0)