Skip to content

Commit

Permalink
chore: prepare for crates.io release 0.1.0-alpha.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Oakchris1955 committed Aug 4, 2024
1 parent ec3afb0 commit ab9d694
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
[package]
name = "simple-fatfs"
version = "0.1.0"
version = "0.1.0-alpha.1"
edition = "2021"
description = "A simple-to-use FAT filesystem library for Rust (mainly targeted at embedded systems)"
license = "MIT"
repository = "https://github.com/Oakchris1955/simple-fatfs"
exclude = ["/.github", ".vscode", "/imgs", "**/*cliff*"]

[dependencies]
bitfield-struct = "0.8.0"
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# simple-fatfs

[![CI Status](https://github.com/Oakchris1955/simple-fatfs/actions/workflows/test.yml/badge.svg)](https://github.com/Oakchris1955/simple-fatfs/actions/workflows/test.yml)
![GitHub License](https://img.shields.io/github/license/Oakchris1955/simple-fatfs?color=blue)
[![Crates.io Version](https://img.shields.io/crates/v/simple-fatfs)](https://crates.io/crates/simple-fatfs)
[![docs.rs](https://docs.rs/simple-fatfs/badge.svg)](https://docs.rs/simple-fatfs)
![Crates.io MSRV](https://img.shields.io/crates/msrv/simple-fatfs)

A simple-to-use filesystem driver for the File Allocation Table (FAT)

## Motive
Expand Down
4 changes: 4 additions & 0 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ footer = """
[{{ release.version | trim_start_matches(pat="v") }}]: \
https://github.com/{{ remote.github.owner }}/{{ remote.github.repo }}\
/compare/{{ release.previous.version }}..{{ release.version }}
{% else %}
[{{ release.version | trim_start_matches(pat="v") }}]: \
https://github.com/{{ remote.github.owner }}/{{ remote.github.repo }}\
/tree/{{ release.version }}
{% endif -%}
{% else -%}
[Unreleased]: \
Expand Down

0 comments on commit ab9d694

Please sign in to comment.