Skip to content
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.

Commit

Permalink
Update Project.toml and CHANGELOG
Browse files Browse the repository at this point in the history
- Increment version.
- Adjust compat section.
- Add extras and targets sections.
- Update email addresses.
- Correct UUID.
- CHANGELOG entries.
  • Loading branch information
Ciarán O’Mara committed Feb 12, 2022
1 parent 866a032 commit 200a94c
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [v1.1.0] - 2022-02-12
- Allow `blastn` and `blastp` to run a `Vector{BioSequence}` against a file or database
- General maintenance.

## [v1.0.0] - 2018-12-11
- Adds support to Julia 1.0
Expand All @@ -16,6 +19,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Readme and docs [\#2](https://github.com/BioJulia/BioTools.jl/pull/2) ([Ward9250](https://github.com/Ward9250))
- Source code and tests [\#1](https://github.com/BioJulia/BioTools.jl/pull/1) ([Ward9250](https://github.com/Ward9250))

[Unreleased]: https://github.com/BioJulia/BioTools.jl/compare/v1.0.0...HEAD
[Unreleased]: https://github.com/BioJulia/BioTools.jl/compare/v1.1.0...HEAD
[1.1.0]: https://github.com/BioJulia/BioTools.jl/compare/v1.0.0...v1.1.0
[1.0.0]: https://github.com/BioJulia/BioTools.jl/compare/v0.1.0...v1.0.0
[0.1.0]: https://github.com/BioJulia/BioTools.jl/tree/v0.1.0
18 changes: 14 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "BioTools"
uuid = "6631239a-b2a9-11e8-0104-a58b323c83c6"
authors = ["Ben J. Ward <ward9250@gmail.com>"]
version = "0.2.0"
uuid = "fa51a905-6db9-5d43-b62f-5461347a870a"
authors = ["Sabrina J. Ward <sabrinajward@protonmail.com>"]
version = "1.1.0"

[deps]
BioAlignments = "00701ae9-d1dc-5365-b64a-a3a3ebf5695e"
Expand All @@ -10,4 +10,14 @@ BioSequences = "7e6ae17a-c86d-528c-b3b9-7f778a29fe59"
EzXML = "8f5d6c58-4d21-5cfd-889c-e3ad7ee6a615"

[compat]
julia = "1.0"
BioAlignments = "1"
BioCore = "2"
BioSequences = "1"
EzXML = "0.9, 1"
julia = "1"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]

2 comments on commit 200a94c

@CiaranOMara
Copy link
Member

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/54506

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 v1.1.0 -m "<description of version>" 200a94cf00dca0ac83257cb94da52b7b80adf2aa
git push origin v1.1.0

Please sign in to comment.