diff --git a/.bumpversion.cfg b/.bumpversion.cfg index afecc3d74..d0cd70d0e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.2.0 +current_version = 1.3.0 commit = True tag = False message = Bump up to version {new_version}. diff --git a/.zenodo.json b/.zenodo.json index f529fdca2..5e648e400 100644 --- a/.zenodo.json +++ b/.zenodo.json @@ -31,6 +31,30 @@ { "affiliation": "University of Michigan", "name": "Alexander Adams" + }, + { + "affiliation": "University of Michigan", + "name": "Thomas R. Waltmann", + "orcid": "0000-0001-6876-5956" + }, + { + "affiliation": "University of Goettingen", + "name": "Ali Malek" + }, + { + "affiliation": "Boise State University", + "name": "Jenny Fothergill", + "orcid": "0000-0001-9665-5420" + }, + { + "affiliation": "University of Michigan", + "name": "Alyssa Travitz", + "orcid": "0000-0001-5953-8807" + }, + { + "affiliation": "University of Michigan", + "name": "Brandon Butler", + "orcid": "0000-0001-7739-7796" } ], "creators": [ @@ -78,5 +102,5 @@ "id": "http://www.opensource.org/licenses/BSD-3-Clause" }, "title": "signac", - "version": "1.2.0" + "version": "1.3.0" } \ No newline at end of file diff --git a/CITATION.cff b/CITATION.cff index 1e701a621..5c4c87f13 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -2,7 +2,7 @@ --- cff-version: "1.0.3" title: signac -version: 1.2.0 +version: 1.3.0 abstract: | The signac framework helps users manage and scale file-based workflows, facilitating data reuse, sharing, and reproducibility. It provides a simple and robust data model to create diff --git a/changelog.txt b/changelog.txt index 0af6dab0c..21e7caa0f 100644 --- a/changelog.txt +++ b/changelog.txt @@ -7,18 +7,8 @@ The **signac** package follows `semantic versioning `_. Version 1 ========= -Highlights ----------- - - - Native integration of HDF5 files with the ``H5Store`` and ``H5StoreManager``, which are exposed as the ``job.data``, ``job.stores``, ``project.data``, and ``project.stores`` properties respectively. - - The newly added ``signac.get_job()`` function makes it easier to obtain instances of ``Job`` by calling the function from within a job's workspace directory or by directly providing the path to the job's workspace directory. This is especially useful for interactive work or when accessing jobs which are outside of the current project. - - Simplified export of project and job data to pandas dataframes *via* the ``to_dataframe()`` function. - - Projects and job search results are displayed nicely in Jupyter Notebooks. - - Support for compressed Collection files. - - -Next ----- +[1.3.0] -- 2019-12-20 +--------------------- Added +++++ @@ -148,17 +138,6 @@ Removed Version 0.9 =========== -Highlights ----------- - - - Adds persistent state point index caching, which speeds up all functions that require indexing, for example the ``$ signac find`` command. - - Adds the ``$ signac sync`` tool for synchronization of multiple **signac** projects. - - Adds the ``$ signac schema`` function for the automatic detection of the implicit schema of a **signac** project. - - Adds the ``$near`` operator to match numbers with up to a specific precision. - - Adds functions for the import and export of data spaces. - - Add functions for the management of data on the project level, as opposed to the job level. - - [0.9.5] -- 2019-01-31 --------------------- @@ -264,14 +243,6 @@ Changed Version 0.8 =========== -Highlights ----------- - - - Adds boolean and arithmetic operators to search queries. - - Major revision of the indexing system. - - Adds ``$ signac document`` command line function. - - Add the ``signac.Collection`` class for the management of persistent document collections. - [0.8.7] -- 2017-10-05 --------------------- @@ -402,18 +373,6 @@ Fixed Version 0.7 =========== -Highlights ----------- - - - Add support for Python 3.6, PyPy and PyPy3. - - Make any instance of ``Project`` behave like an iterable (``for job in project``). - - Introduction of the ``Job.sp`` attribute to access state point variables. - - Revision of the linked view function, which now allows the update of previous views. - - Support for searching by job document keys on the command line. - - Add functions for moving and cloning jobs. - - Add functions for changing a job's state point. - - Enable opening of jobs by *abbreviated id*. - [0.7.1] -- 2017-01-09 --------------------- @@ -485,12 +444,6 @@ Removed Version 0.6 =========== -Highlights ----------- - - - General revision of the indexing and export system. - - General consolidation including the removal of the *conversion framework*. - [0.6.2] -- 2017-12-15 --------------------- diff --git a/contributors.yaml b/contributors.yaml index 1a12652fb..0838169e4 100644 --- a/contributors.yaml +++ b/contributors.yaml @@ -71,7 +71,7 @@ contributors: given-names: Alyssa affiliation: "University of Michigan" orcid: "https://orcid.org/0000-0001-5953-8807" - + - family-names: Butler given-names: Brandon affiliation: "University of Michigan" diff --git a/doc/conf.py b/doc/conf.py index 600852918..589b767b3 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -79,9 +79,9 @@ def __getattr__(cls, name): # built documents. # # The short X.Y version. -version = '1.2.0' +version = '1.3.0' # The full version, including alpha/beta/rc tags. -release = '1.2.0' +release = '1.3.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 89e12b18f..5492bfcc5 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ setup( name='signac', - version='1.2.0', + version='1.3.0', packages=find_packages(), zip_safe=True, diff --git a/signac/version.py b/signac/version.py index f054fc621..f2c4736fa 100644 --- a/signac/version.py +++ b/signac/version.py @@ -3,7 +3,7 @@ # This software is licensed under the BSD 3-Clause License. -__version__ = "1.2.0" +__version__ = "1.3.0" SCHEMA_VERSION = "1"