hs3003 0.1.1

Platform-agnostic Rust driver for the Renesas HS3003 temperature and humidity sensor
Documentation
[workspace]
# Create a GitHub release when publishing
release = true

# Generate changelog from conventional commits
changelog_update = true


[changelog]
# Changelog header
header = """# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

"""

# Commit types to include in changelog
commit_parsers = [
    { message = "^feat", group = "๐Ÿš€ Features" },
    { message = "^fix", group = "๐Ÿ› Bug Fixes" },
    { message = "^doc", group = "๐Ÿ“š Documentation" },
    { message = "^perf", group = "โšก Performance" },
    { message = "^refactor", group = "๐Ÿ”ง Refactoring" },
    { message = "^test", group = "๐Ÿงช Testing" },
    { message = "^chore\\(release\\)", skip = true },
    { message = "^chore", group = "๐Ÿ“ฆ Miscellaneous" },
]

# Protect against accidentally releasing with breaking changes in 0.x
protect_breaking_commits = false