Skip to content

Commit 3b4fe8f

Browse files
committed
Update package to 1.0.0
1 parent 386d7ef commit 3b4fe8f

File tree

4 files changed

+26
-7
lines changed

4 files changed

+26
-7
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ authors:
1717
given-names: "George"
1818
orcid: "https://orcid.org/0000-0002-8198-5790"
1919
title: "Harmony"
20-
version: 0.5.2
20+
version: 1.0.0
2121
doi: DOI 10.17605/OSF.IO/BCT6K
2222
date-released: 2023-07-22
2323
url: "https://harmonydata.ac.uk"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "harmonydata"
3-
version = "0.5.2"
3+
version = "1.0.0"
44
description = "Harmony Tool for Retrospective Data Harmonisation"
55
readme = "README.md"
66
keywords = [

src/harmony/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
2626
'''
2727

28-
__version__ = "0.5.2"
28+
__version__ = "0.5.3"
2929

3030
# TODO: make these configurable at package level
3131
import os

update.ipynb

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
},
1313
{
1414
"cell_type": "code",
15-
"execution_count": null,
15+
"execution_count": 1,
1616
"id": "e8675335",
1717
"metadata": {},
1818
"outputs": [],
@@ -23,7 +23,7 @@
2323
},
2424
{
2525
"cell_type": "code",
26-
"execution_count": null,
26+
"execution_count": 2,
2727
"id": "a101249b",
2828
"metadata": {},
2929
"outputs": [],
@@ -33,10 +33,19 @@
3333
},
3434
{
3535
"cell_type": "code",
36-
"execution_count": null,
36+
"execution_count": 3,
3737
"id": "4683dcc3",
3838
"metadata": {},
39-
"outputs": [],
39+
"outputs": [
40+
{
41+
"name": "stdout",
42+
"output_type": "stream",
43+
"text": [
44+
"Old version 0.5.2\n",
45+
"New version 0.5.3\n"
46+
]
47+
}
48+
],
4049
"source": [
4150
"init_py_lines = text.split(\"\\n\")\n",
4251
"for idx, line in list(enumerate(init_py_lines)):\n",
@@ -52,6 +61,16 @@
5261
" print (\"New version\", new_version)"
5362
]
5463
},
64+
{
65+
"cell_type": "code",
66+
"execution_count": 4,
67+
"id": "3b30d933",
68+
"metadata": {},
69+
"outputs": [],
70+
"source": [
71+
"new_version = '1.0.0'"
72+
]
73+
},
5574
{
5675
"cell_type": "code",
5776
"execution_count": null,

0 commit comments

Comments
 (0)