Skip to content

Commit

Permalink
Merge branch 'compat'
Browse files Browse the repository at this point in the history
  • Loading branch information
CiaranOMara committed Jan 7, 2020
2 parents e0783f5 + e5ebf2c commit d4a5c80
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
version: ${{ matrix.julia-version }}
- name: Pkg.add("CompatHelper")
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
- name: CompatHelper.main(; master_branch = "master")
- name: CompatHelper.main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: julia -e 'using CompatHelper; CompatHelper.main()'
run: julia -e 'using CompatHelper; CompatHelper.main(; master_branch = "master")'
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [1.0.3]
### Changed
- Add ColorTypes "0.9" to compat.
- Add FixedPointNumbers "0.7" to compat.

### Fixed
- CompatHelper configuration.

## [1.0.2]
### Fixed
- Corrected typo in Strand constructor.
Expand All @@ -28,7 +36,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Move code from Bio.jl.
- Add support for GFF3 and BigWig.

[Unreleased]: https://github.com/BioJulia/GenomicFeatures.jl/compare/v1.0.2...HEAD
[Unreleased]: https://github.com/BioJulia/GenomicFeatures.jl/compare/v1.0.3...HEAD
[1.0.3]: https://github.com/BioJulia/GenomicFeatures.jl/compare/v1.0.2...v1.0.3
[1.0.2]: https://github.com/BioJulia/GenomicFeatures.jl/compare/v1.0.1...v1.0.2
[1.0.1]: https://github.com/BioJulia/GenomicFeatures.jl/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/BioJulia/GenomicFeatures.jl/compare/v0.2.1...v1.0.0
Expand Down
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "GenomicFeatures"
uuid = "899a7d2d-5c61-547b-bef9-6698a8d05446"
authors = ["Kenta Sato <[email protected]>", "Ben J. Ward <[email protected]>", "Ciarán O’Mara <[email protected]>"]
version = "1.0.2"
version = "1.0.3"

[deps]
Automa = "67c07d97-cdcb-5c2c-af73-a7f9c32a568b"
Expand All @@ -22,9 +22,9 @@ BGZFStreams = "0.3"
BioCore = "2.0.2"
BioSequences = "1.0"
BufferedStreams = "1.0.0"
ColorTypes = "0.7.4, 0.8"
ColorTypes = "0.7.4, 0.8, 0.9"
DataStructures = "0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17"
FixedPointNumbers = "0.5.2, 0.6"
FixedPointNumbers = "0.5.2, 0.6, 0.7"
IntervalTrees = "1.0"
Libz = "1.0"
URIParser = "0.4"
Expand Down

2 comments on commit d4a5c80

@CiaranOMara
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/7616

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 Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v1.0.3 -m "<description of version>" d4a5c80e065719ee3582c957078442fb05f9f6af
git push origin v1.0.3

Please sign in to comment.