Skip to content

Commit

Permalink
Bumped version number
Browse files Browse the repository at this point in the history
  • Loading branch information
douweschulte committed Mar 29, 2022
1 parent f52a569 commit eb86778
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
title: pdbtbx
version: 0.9.0
version: 0.9.1
abstract: A library to open/edit/save (crystallographic) Protein Data Bank (PDB) and mmCIF files in Rust.
authors:
- affiliation: Utrecht University
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pdbtbx"
version = "0.9.0"
version = "0.9.1"
authors = ["Douwe Schulte <d.schulte@uu.nl>"]
license = "MIT"
edition = "2018"
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,14 @@ The features where support is planned are planned to be included in the 1.0 rele
* The crate has many ways of iterating over the PDB structure to allow for convenient access and control over the performance.

## Latest update
### v0.9.0 'Structured search'
* Added `find` method on all levels in the PDB, this should allow for human friendly atom(s) searching.
`pdb.find(Term::ConformerName("ALA".to_string()) + Term::AtomName("CA".to_string()))`
* Added `bounding_box` to the PDB struct.
* Added `atom.overlaps_bound()` which uses covalent bond radii instead of unbound radii. (Thanks to raised issue)
* Extended `atomic_number` to take the first character of the name if this is one of "CHONS" and the element is unset and the name is not an element name.
* Updated covalent bond radii to work in Å as well (was picometers).
* Respecified the dependencies versions to allow cargo to more often reuse dependencies in complex projects.
### v0.9.1
* Added more search terms
* Added angle and dihedral angle calculations on atoms (Thanks to DocKDE)
* Added extra examples (Thanks to DocKDE)
* Added support for DBREF1/2
* Improved PDB parsing performance (Thanks to DocKDE)
* Improved error message styling and merged common errors
* Additional code and documentation improvements

Also see [changelog](https://github.com/douweschulte/pdbtbx/blob/master/changelog.md).

Expand Down
9 changes: 9 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# Changelog
All versions are properly annotated on [github](https://github.com/douweschulte/pdbtbx/releases) so there the source code for each version can be retrieved.

### v0.9.1
* Added more search terms
* Added angle and dihedral angle calculations on atoms (Thanks to DocKDE)
* Added extra examples (Thanks to DocKDE)
* Added support for DBREF1/2
* Improved PDB parsing performance (Thanks to DocKDE)
* Improved error message styling and merged common errors
* Additional code and documentation improvements

### v0.9.0 'Structured search'
* Added `find` method on all levels in the PDB, this should allow for human friendly atom(s) searching.
`pdb.find(Term::ConformerName("ALA".to_string()) + Term::AtomName("CA".to_string()))`
Expand Down

0 comments on commit eb86778

Please sign in to comment.