Skip to content

Commit

Permalink
update news, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
jgreener64 committed Jan 1, 2024
1 parent 7b6da74 commit 69b4812
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
BioStructures.jl release notes
==============================

## v3.0.0 - Jan 2024

* On Julia 1.9 and later the `DataFrame` and `MetaGraph` constructors are moved to package extensions in order to reduce the number of dependencies. Calling `using DataFrames` and `using Graphs, MetaGraphs` respectively is now required to access these functions.
* The file formats `PDB`, `PDBXML`, `MMCIF` and `MMTF` are no longer subtypes of `BioCore.IO.FileFormat`, allowing BioCore.jl to be removed as a dependency.

## v2.1.0 - Oct 2023

* DSSP and STRIDE can now be run to assign secondary structure to proteins.
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "BioStructures"
uuid = "de9282ab-8554-53be-b2d6-f6c222edabfc"
authors = ["Joe G Greener <[email protected]>"]
version = "2.1.0"
version = "3.0.0"

[deps]
BioAlignments = "00701ae9-d1dc-5365-b64a-a3a3ebf5695e"
Expand Down

2 comments on commit 69b4812

@jgreener64
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/98012

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v3.0.0 -m "<description of version>" 69b48127811f0ec235bd17e25838af7ceffd4087
git push origin v3.0.0

Please sign in to comment.