Releases: CitrineInformatics/gemd-python
GEMD v0.7.2 is released!
What’s New
- We've added support for molecular structures. Now information can be stored and communicated about the structure of a molecule in either SMILES or InChI format.
Improvements
- We've updated the documentation on how to contribute. It provides detailed information on how to deploy a new version to pypi as well as clear documentation of our coding standards.
- We've augmented our
cakedemo to include the new molecular structure bounds and value types. Take a look at the Abstract Salt and Abstract Sugar nodes.
Fixes
- We fixed an error with the fuzzing behavior on
cakeexamples so that you can no longer get volume fractions greater than 1.
Obsoleted
- With the transition past
v0.7.0, we've removed the now-obsolete support for the taurus namespace.
GEMD v0.6.4 is released!
This release improves the Strehlow and Cook demo data.
What's New
- The Strehlow and Cook demo template scope is now configurable. The desired template scope can be passed as an argument to the command line invocation or to any method that uses it. The scope defaults to the previous value to ensure backwards compatibility
Fixes
- The Strehlow and Cook demo now uses unified material specs for replicate chemical formulas, as opposed to the previous behavior of creating a new one each time.
GEMD v0.6.2 is released!
This release migrates to the official gemd name. The contents of the taurus module have been moved to gemd, but the taurus module was deprecated rather than removed. It will be removed in 0.7.0.
What's new
- The
gemdmodule! GEMD stands for "Generalized Expression of Materials Data" and is the official name of Citrine's data model! The "taurus" code name served us well and will be missed.
Improvements
- The
gemd.entity.bounds,gemd.entity.attribute,gemd.entity.value, andgemd.entity.templatemodules joingemd.entity.objectin importing their members, allowing imports likefrom gemd.entity.template import ProcessTemplate, ParameterTemplate.
Deprecated
- The
taurusmodule is deprecated and will be removed in the next feature release. Migration involves replacingtauruswithgemdin imports andTaurusEncoder/TaurusJsonwithGEMDEncoderandGEMDJson.
Taurus v0.6.0 is released!
0.6.0 is released! This release focuses on significant changes to JSON support, which should provide a more intuitive experience to users and a more expressive and extensible experience to developers.
What’s New
taurus.jsonhas been added as a drop-in replacement for python's builtinjsonmodule. (#86)taurus.json.TaurusJsonhas been added to encapsulate the configuration of a taurus-compatible json serializer/deserializer. (#86)TaurusJsonobjects have a newregister_classesmethod to support the extension of json support to other classes in packages that develop on top oftaurus. (#86)taurus.utilincludes a publicwriteable_sort_ordermethod that accepts either data objects or type strings. (#85)
Improvements
- Output materials are now included when serializing processes. (#87)
Bugfixes
- Measurements are now correctly included when serializing materials. (#84)
Changes
taurus.client.json_encoderhas been moved totaurus.json. Thetaurus.client.json_encoderis now deprecated and will be removed inv0.7.0. (#86)
Backport v0.4.1
0.4.1 is released!
What’s New
- The cake examples has been extended to demonstrate more of the data model
- The Strehlow and Cook example now imports directly from the Citrination PIF and includes a substantially increased number of attributes
Taurus 0.5.0 is released!
0.5.0 is released!
What’s New
- The cake examples has been extended to demonstrate more of the data model
- The Strehlow and Cook example now imports directly from the Citrination PIF and includes a substantially increased number of attributes
Improvements
- The
flattenmethod has been altered so that entire material histories can be flattened. The order of the returned objects is such that they can be created and re-linked in that order. - The
raw_dumpsandraw_loadsmethods were added to thejson_encoderto provide access to the custom class encoder/decoder without the normalization/denormalization logic present in the fulldumpsandloadsmethods.
0.4.0 is released!
What’s New
- As our experience with the data model grows, we are working hard to both improve the tools for interacting with it and pushing its structure forward, making to more representative of the real world information Materials Scientists work with every day. This release represents both improvements in those interfaces as well as fixing some bugs.
Improvements
- The serialization and deserialization as well as the helper functions to interact with and modify GEMD graphs have been improved. This should empower users to get more done in fewer lines of code.
- The data example Cake has been augmented to have complete coverage of the data model. This should help users ground their understanding of Templates, Objects and Values in a practical, relatable resource.
Fixes
- IngredientRuns and IngredientSpecs have been modified so that the logical equivalence of their name and labels fields is easier to have consistent when objects are being created.
- And, of course, all of this is tested and documented
Coming Soon
- More examples. We understand how much easier it is to understand a data model with concrete examples, so we're working hard to develop more and to use those examples in end-to-end demonstrations of how to use our entire data management and machine learning stack.
Taurus v0.3.0 is released!
The largest change with this release is a large increase in the list of supported units. We've also improved documentation, particularly for the installation process in our README.
What's new:
- Augmented unit sets
- Improved documentation of installation, testing and units coverage
- Updated keyword handling for serialization technology
- Augmented test coverage
Coming Soon:
- More types for supporting data provenance
Taurus v0.2.0 is released!
Most of this release is test coverage, which includes some changes to the exception types to better reflect the error that is being raised. This release also includes improvements to the string representation of data objects.
What's new
- 100% test coverage.
- A more intelligent
__repr__method, which will include the names of soft-linked objects.
Changes
- Some
ValueErrorchanged toTypeErrorwhen validating arguments. This better reflects the error mode.
Coming Soon
- More units for real values, e.g. #23
Taurus v0.1.0 is released!
This is the first beta release of taurus-citrine: the python binding to Citrine's next data format, also code-named taurus. It supports access to the Citrine Data Platform via citrine-python. It is a beta release that we expect to actively develop over the next several months.
What's new
- Everything! This is the first release of
taurusand the first implementation of thetaurusdata model. - Material histories with Materials, Processes, Ingredients, and Measurements
- Differentiating between intent and reality with Specs and Runs
- Opt-in data validation with Templates
- Opt-out uncertainty quantification with distribution types
- Multi-object serialization and deserialization with link normalization
- Unit string parsing
Coming Soon
- More units for real values, e.g. #23
- More sources for
MeasurementRunandProcessRun