Skip to content

Commit 116a8ee

Browse files
authored
Merge pull request #88 from citation-file-format/switched-yaml-libs
updated version numbers
2 parents 11ae9e4 + 339a4cd commit 116a8ee

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ authors:
2121
given-names: Stephan
2222
orcid: https://orcid.org/0000-0003-4925-7248
2323
cff-version: "1.0.3"
24-
date-released: 2018-11-06
24+
date-released: 2018-12-05
2525
doi: 10.5281/zenodo.1162057
2626
keywords:
2727
- "citation"
@@ -32,4 +32,4 @@ license: Apache-2.0
3232
message: "If you use this software, please cite it using these metadata."
3333
repository-code: "https://github.com/citation-file-format/cff-converter-python"
3434
title: cffconvert
35-
version: "1.0.3"
35+
version: "1.0.4"

cffconvert/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# from https://stackoverflow.com/questions/2058802/how-can-i-get-the-version-defined
22
# -in-setup-py-setuptools-in-my-package#answer-24517154
33

4-
__version__ = "1.0.3"
4+
__version__ = "1.0.4"

codemeta.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
}
4747
],
4848
"codeRepository": "https://github.com/citation-file-format/cff-converter-python",
49-
"datePublished": "2018-11-06",
49+
"datePublished": "2018-12-05",
5050
"identifier": "https://doi.org/10.5281/zenodo.1162057",
5151
"keywords": [
5252
"citation",
@@ -56,5 +56,5 @@
5656
],
5757
"license": "http://www.apache.org/licenses/LICENSE-2.0",
5858
"name": "cffconvert",
59-
"version": "1.0.3"
59+
"version": "1.0.4"
6060
}

test/cli_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def test_printing_of_help(self):
3131
def test_printing_of_version(self):
3232
result = self.runner.invoke(cffconvert_cli, ["--version"])
3333
self.assertTrue(result.exit_code == 0)
34-
self.assertEqual(result.output, "1.0.3\n")
34+
self.assertEqual(result.output, "1.0.4\n")
3535

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

0 commit comments

Comments
 (0)