From 42e1b77f71d177dd2ecf4cb9504edbd982418ee2 Mon Sep 17 00:00:00 2001 From: Carlo Baldassi Date: Fri, 30 Aug 2024 22:52:31 +0200 Subject: [PATCH] Require Julia >= v1.6, cleanup README --- .github/workflows/ci.yml | 2 +- Project.toml | 4 ++-- README.md | 24 +++++++++--------------- 3 files changed, 12 insertions(+), 18 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eeb0b83..f97efa3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: version: - - '1.0' # Oldest supported version + - '1.6' # Oldest supported version - '1' # Latest release - 'nightly' os: diff --git a/Project.toml b/Project.toml index 0ab4ba4..963163d 100644 --- a/Project.toml +++ b/Project.toml @@ -1,14 +1,14 @@ name = "FastaIO" uuid = "a0c94c4b-ebed-5953-b5fc-82fe598ac79f" author = ["Carlo Baldassi "] -version = "1.0.2" +version = "1.1.0" [deps] GZip = "92fee26a-97fe-5a0c-ad85-20a5f3185b63" [compat] GZip = "0.5,0.6" -julia = "1" +julia = "1.6" [extras] Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" diff --git a/README.md b/README.md index 83a5aa5..78baf7f 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,6 @@ # FastaIO.jl -| **Documentation** | **Build Status** | -|:-------------------------------------------------------------------------:|:------------------------------------------------------------:| -| [![][docs-stable-img]][docs-stable-url] [![][docs-dev-img]][docs-dev-url] | [![][travis-img]][travis-url][![][codecov-img]][codecov-url] | +[![DOCS][docs-img]][docs-url] [![CI][CI-img]][CI-url] [![CODECOV][codecov-img]][codecov-url] Utilities to read/write FASTA format files in [Julia]. @@ -13,7 +11,7 @@ Utilities to read/write FASTA format files in [Julia]. To install the module, use Julia's package manager: start pkg mode by pressing ] and then enter: ``` -(v1.3) pkg> add FastaIO +(v1.10) pkg> add FastaIO ``` Dependencies will be installed automatically. @@ -25,20 +23,16 @@ julia> using FastaIO ### Documentation -- [**STABLE**][docs-stable-url] — **most recently tagged version of the documentation.** -- [**DEV**][docs-dev-url] — *in-development version of the documentation.* - -See also the examples in the `examples/` directory. +- The manual is [HERE][docs-url]. +- See also the examples in the [examples directory](examples). [Julia]: http://julialang.org -[docs-stable-img]: https://img.shields.io/badge/docs-stable-blue.svg -[docs-stable-url]: https://carlobaldassi.github.io/FastaIO.jl/stable -[docs-dev-img]: https://img.shields.io/badge/docs-dev-blue.svg -[docs-dev-url]: https://carlobaldassi.github.io/FastaIO.jl/dev - -[travis-img]: https://travis-ci.com/carlobaldassi/FastaIO.jl.svg?branch=master -[travis-url]: https://travis-ci.com/carlobaldassi/FastaIO.jl +[docs-img]: https://img.shields.io/badge/docs-stable-blue.svg +[docs-url]: https://carlobaldassi.github.io/FastaIO.jl/stable [codecov-img]: https://codecov.io/gh/carlobaldassi/FastaIO.jl/branch/master/graph/badge.svg [codecov-url]: https://codecov.io/gh/carlobaldassi/FastaIO.jl + +[CI-img]: https://github.com/carlobaldassi/FastaIO.jl/actions/workflows/ci.yml/badge.svg +[CI-url]: https://github.com/carlobaldassi/FastaIO.jl/actions/workflows/ci.yml