Skip to content

Commit

Permalink
all: release 0.2.0 (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcloughlin committed Apr 5, 2021
1 parent 0f921f2 commit e800013
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
8 changes: 4 additions & 4 deletions .zenodo.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"title": "mmcloughlin/addchain: v0.1.0",
"title": "mmcloughlin/addchain: v0.2.0",
"description": "Cryptographic Addition Chain Generation in Go",
"version": "0.1.0",
"publication_date": "2021-03-21",
"version": "0.2.0",
"publication_date": "2021-04-05",
"upload_type": "software",
"access_right": "open",
"license": "BSD-3-Clause",
Expand All @@ -14,7 +14,7 @@
],
"related_identifiers": [
{
"identifier": "https://github.com/mmcloughlin/addchain/tree/v0.1.0",
"identifier": "https://github.com/mmcloughlin/addchain/tree/v0.2.0",
"relation": "isSupplementTo",
"scheme": "url"
}
Expand Down
8 changes: 4 additions & 4 deletions CITATION.bib
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ @misc{addchain
title = {addchain: Cryptographic Addition Chain Generation in Go},
author = {Michael B. McLoughlin},
year = 2021,
month = mar,
month = apr,
howpublished = {Github repository \url{https://github.com/mmcloughlin/addchain}},
version = {0.1.0},
version = {0.2.0},
license = {BSD 3-Clause License},
doi = {10.5281/zenodo.4625264},
url = {https://doi.org/10.5281/zenodo.4625264},
doi = {10.5281/zenodo.4662389},
url = {https://doi.org/10.5281/zenodo.4662389},
}
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<img src="https://img.shields.io/github/workflow/status/mmcloughlin/addchain/ci/master.svg?style=flat-square" alt="Build Status" />
<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>
<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>
<a href="https://doi.org/10.5281/zenodo.4625264"><img src="https://img.shields.io/badge/DOI-10.5281%2Fzenodo.4625264-007ec6?style=flat-square" alt="DOI: 10.5281/zenodo.4625264" /></a>
<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>
</p>

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

```bib
@misc{addchain,
title = {addchain: Cryptographic Addition Chain Generation in Go},
author = {Michael B. McLoughlin},
year = 2021,
month = mar,
month = apr,
howpublished = {Github repository \url{https://github.com/mmcloughlin/addchain}},
version = {0.1.0},
version = {0.2.0},
license = {BSD 3-Clause License},
doi = {10.5281/zenodo.4625264},
url = {https://doi.org/10.5281/zenodo.4625264},
doi = {10.5281/zenodo.4662389},
url = {https://doi.org/10.5281/zenodo.4662389},
}
```

Expand Down
8 changes: 4 additions & 4 deletions internal/meta/vars.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package meta

var (
buildversion = ""
releaseversion = "0.1.0"
releasedate = "2021-03-21"
releaseversion = "0.2.0"
releasedate = "2021-04-05"
conceptdoi = "10.5281/zenodo.4625263"
doi = "10.5281/zenodo.4625264"
zenodoid = "4625264"
doi = "10.5281/zenodo.4662389"
zenodoid = "4662389"
)

0 comments on commit e800013

Please sign in to comment.