Skip to content

Commit 3c322d0

Browse files
committed
versioning
1 parent 2eb56ff commit 3c322d0

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ authors:
88
given-names: "Simon"
99
orcid: "https://orcid.org/0000-0002-2700-4605"
1010
title: "Neotoma Paleoecology Database DataBUS"
11-
version: 0.1.0
11+
version: 2.0.0
1212
date-released: 2023-11-15
1313
url: "https://github.com/NeotomaDB/DataBUS"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "DataBUS"
7-
version = "0.1.0"
7+
version = "2.0.0"
88
description = "Upload dataset records to the Neotoma Database"
99
authors = [{name = "Socorro E Dominguez Vidana", email = "dominguezvid@uwisc.edu"}]
1010
license = "MIT"

src/DataBUS/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
__version__ (str): Current version of the package.
99
"""
1010

11-
__version__ = "0.1.0"
11+
__version__ = "2.0.0"
1212

1313
import argparse
1414
import datetime

src/DataBUS/neotomaHelpers/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
__version__ (str): Version of the neotomaHelpers module.
88
"""
99

10-
__version__ = "0.1.0"
10+
__version__ = "2.0.0"
1111

1212
from .check_file import check_file
1313
from .get_contacts import get_contacts

src/DataBUS/neotomaValidator/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
It provides functions to validate various paleontological and geochronological data
55
types before insertion into the Neotoma database.
66
7-
Version: 0.1.0
7+
Version: 2.0.0
88
"""
99

10-
__version__ = "0.1.0"
10+
__version__ = "2.0.0"
1111

1212
import argparse
1313
import datetime

0 commit comments

Comments
 (0)