Skip to content

Commit

Permalink
Update change-log and add Compat entries to Project file
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben J. Ward committed Feb 13, 2020
1 parent 2cb9037 commit ef486fe
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ 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]

## [2.0.1]
### Changed
- Fixed syntax errors where functions were marked with `@inbounds` instead of
`@inline`.

## [2.0]
### Added
- New subtypes of Random.Sampler, SamplerUniform and SamplerWeighted.
- Random `LongSequence`s can now be created with `randseq`,
Expand All @@ -26,6 +33,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Generators of bit-parallel iteration code have been introduced to help
developers write bitparallel implementations of some methods. Counting GC
content, matches and mismatches have been migrated to use these generators.
- Added `occursin` methods for exact matching.

### Changed
- The abstract `Sequence` type is now called `BioSequence{A}`.
Expand Down Expand Up @@ -125,7 +133,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- All files pertaining to the old Bio.Seq module.


[Unreleased]: https://github.com/BioJulia/BioSequences.jl/compare/v1.1.0...HEAD
[Unreleased]: https://github.com/BioJulia/BioSequences.jl/compare/v2.0.1...HEAD
[2.0.1]: https://github.com/BioJulia/BioSequences.jl/compare/v2.0.0...v2.0.1
[2.0.0]: https://github.com/BioJulia/BioSequences.jl/compare/v1.1.0...v2.0.0
[1.1.0]: https://github.com/BioJulia/BioSequences.jl/compare/v1.0.0...v1.1.0
[1.0.0]: https://github.com/BioJulia/BioSequences.jl/compare/v0.8.3...v1.0.0
[0.8.3]: https://github.com/BioJulia/BioSequences.jl/compare/v0.8.2...v0.8.3
Expand Down
2 changes: 2 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Twiddle = "7200193e-83a8-5a55-b20d-5d36d44a0795"

[compat]
BioGenerics = "0.1.0"
BioSymbols = "4.0.0"
Combinatorics = "1.0.0"
IndexableBitVectors = "1.0.0"
Twiddle = "1.1.1"
julia = "1.1.0"
Expand Down

2 comments on commit ef486fe

@TransGirlCodes
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/15284

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 v2.0.1 -m "<description of version>" ef486fe1a85d980a5ba1edd754290ab335556133
git push origin v2.0.1

Please sign in to comment.