Skip to content

Commit

Permalink
Merge pull request #88 from citation-file-format/switched-yaml-libs
Browse files Browse the repository at this point in the history
updated version numbers
  • Loading branch information
jspaaks authored Dec 5, 2018
2 parents 11ae9e4 + 339a4cd commit 116a8ee
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ authors:
given-names: Stephan
orcid: https://orcid.org/0000-0003-4925-7248
cff-version: "1.0.3"
date-released: 2018-11-06
date-released: 2018-12-05
doi: 10.5281/zenodo.1162057
keywords:
- "citation"
Expand All @@ -32,4 +32,4 @@ license: Apache-2.0
message: "If you use this software, please cite it using these metadata."
repository-code: "https://github.com/citation-file-format/cff-converter-python"
title: cffconvert
version: "1.0.3"
version: "1.0.4"
2 changes: 1 addition & 1 deletion cffconvert/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# from https://stackoverflow.com/questions/2058802/how-can-i-get-the-version-defined
# -in-setup-py-setuptools-in-my-package#answer-24517154

__version__ = "1.0.3"
__version__ = "1.0.4"
4 changes: 2 additions & 2 deletions codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
}
],
"codeRepository": "https://github.com/citation-file-format/cff-converter-python",
"datePublished": "2018-11-06",
"datePublished": "2018-12-05",
"identifier": "https://doi.org/10.5281/zenodo.1162057",
"keywords": [
"citation",
Expand All @@ -56,5 +56,5 @@
],
"license": "http://www.apache.org/licenses/LICENSE-2.0",
"name": "cffconvert",
"version": "1.0.3"
"version": "1.0.4"
}
2 changes: 1 addition & 1 deletion test/cli_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def test_printing_of_help(self):
def test_printing_of_version(self):
result = self.runner.invoke(cffconvert_cli, ["--version"])
self.assertTrue(result.exit_code == 0)
self.assertEqual(result.output, "1.0.3\n")
self.assertEqual(result.output, "1.0.4\n")

def test_printing_when_verbose(self):
result = self.runner.invoke(cffconvert_cli, ["--verbose"])
Expand Down

0 comments on commit 116a8ee

Please sign in to comment.