diff --git a/.copier-answers.yml b/.copier-answers.yml index d6f1abe..2fe0fc0 100644 --- a/.copier-answers.yml +++ b/.copier-answers.yml @@ -9,6 +9,6 @@ project_email: blake.naccarato@gmail.com project_name: boilercore project_owner_github_username: blakeNaccarato project_owner_name: Blake Naccarato, Kwang Jin Kim -project_version: 0.0.2 +project_version: 0.0.3 python_version: '3.11' year_of_project_creation: 2023 diff --git a/CHANGELOG.md b/CHANGELOG.md index 1caf269..1f84645 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Nothing yet +## [0.0.3] + +- Include DOI in citation file + ## [0.0.2] - Add placeholder citation file @@ -26,7 +30,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - No features yet -[Unreleased]: https://github.com/blakeNaccarato/boilercore/compare/0.0.2...HEAD +[Unreleased]: https://github.com/blakeNaccarato/boilercore/compare/0.0.3...HEAD +[0.0.3]: https://github.com/blakeNaccarato/boilercore/releases/tag/0.0.3 [0.0.2]: https://github.com/blakeNaccarato/boilercore/releases/tag/0.0.2 [0.0.1]: https://github.com/blakeNaccarato/boilercore/releases/tag/0.0.1 [0.0.0]: https://github.com/blakeNaccarato/boilercore/releases/tag/0.0.0 diff --git a/citation.cff b/citation.cff index 5941171..5468566 100644 --- a/citation.cff +++ b/citation.cff @@ -8,6 +8,6 @@ authors: given-names: "Kwang" orcid: "https://orcid.org/0000-0003-2134-4964" title: "boilercore" -doi: "" +doi: "10.5281/zenodo.10246972" date-released: 2023-12-01 url: "https://github.com/blakeNaccarato/boilercore" diff --git a/docs/conf.py b/docs/conf.py index 0f08685..bc373c4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -3,7 +3,7 @@ project = "" html_title = "boilercore" copyright = f"{date.today().year}, Blake Naccarato, Kwang Jin Kim" # noqa: A001 -version = "0.0.2" +version = "0.0.3" master_doc = "index" language = "en" exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] diff --git a/pyproject.toml b/pyproject.toml index 0d28cd4..7495e98 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi" [project] name = "boilercore" -version = "0.0.2" +version = "0.0.3" description = "Common functionality of boiler repositories." readme = "README.md" license = { file = "LICENSE" }