Skip to content

Commit

Permalink
Update package to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
woodthom2 committed Aug 27, 2024
1 parent 386d7ef commit 3b4fe8f
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ authors:
given-names: "George"
orcid: "https://orcid.org/0000-0002-8198-5790"
title: "Harmony"
version: 0.5.2
version: 1.0.0
doi: DOI 10.17605/OSF.IO/BCT6K
date-released: 2023-07-22
url: "https://harmonydata.ac.uk"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "harmonydata"
version = "0.5.2"
version = "1.0.0"
description = "Harmony Tool for Retrospective Data Harmonisation"
readme = "README.md"
keywords = [
Expand Down
2 changes: 1 addition & 1 deletion src/harmony/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
'''

__version__ = "0.5.2"
__version__ = "0.5.3"

# TODO: make these configurable at package level
import os
Expand Down
27 changes: 23 additions & 4 deletions update.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 1,
"id": "e8675335",
"metadata": {},
"outputs": [],
Expand All @@ -23,7 +23,7 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 2,
"id": "a101249b",
"metadata": {},
"outputs": [],
Expand All @@ -33,10 +33,19 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 3,
"id": "4683dcc3",
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Old version 0.5.2\n",
"New version 0.5.3\n"
]
}
],
"source": [
"init_py_lines = text.split(\"\\n\")\n",
"for idx, line in list(enumerate(init_py_lines)):\n",
Expand All @@ -52,6 +61,16 @@
" print (\"New version\", new_version)"
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "3b30d933",
"metadata": {},
"outputs": [],
"source": [
"new_version = '1.0.0'"
]
},
{
"cell_type": "code",
"execution_count": null,
Expand Down

0 comments on commit 3b4fe8f

Please sign in to comment.