Skip to content

Commit

Permalink
chore: release v0.1.0 (#25)
Browse files Browse the repository at this point in the history
* chore: release

* chore: release

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Nick Keenan <[email protected]>
  • Loading branch information
github-actions[bot] and nkeenan38 authored Jun 3, 2024
1 parent ff16b55 commit 88662f8
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 10 deletions.
32 changes: 25 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,48 +1,66 @@
# 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.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.0](https://github.com/nkeenan38/voice_activity_detector/compare/v0.0.6...v0.1.0) - 2024-06-03

### Added

- add load-dynamic feature flag ([#27](https://github.com/nkeenan38/voice_activity_detector/pull/27))

### Other

- add chunk stream test/example ([#24](https://github.com/nkeenan38/voice_activity_detector/pull/24))

## [0.0.6](https://github.com/nkeenan38/voice_activity_detector/compare/v0.0.5...v0.0.6) - 2024-04-30

### Other
- *(deps)* bump ort from 2.0.0-rc.1 to 2.0.0-rc.2 ([#18](https://github.com/nkeenan38/voice_activity_detector/pull/18))

- _(deps)_ bump ort from 2.0.0-rc.1 to 2.0.0-rc.2 ([#18](https://github.com/nkeenan38/voice_activity_detector/pull/18))

## [0.0.5](https://github.com/nkeenan38/voice_activity_detector/compare/v0.0.4...v0.0.5) - 2024-04-23

### Other
- *(deps)* bump thiserror from 1.0.58 to 1.0.59 ([#15](https://github.com/nkeenan38/voice_activity_detector/pull/15))
- *(deps)* bump typed-builder from 0.18.1 to 0.18.2 ([#16](https://github.com/nkeenan38/voice_activity_detector/pull/16))

- _(deps)_ bump thiserror from 1.0.58 to 1.0.59 ([#15](https://github.com/nkeenan38/voice_activity_detector/pull/15))
- _(deps)_ bump typed-builder from 0.18.1 to 0.18.2 ([#16](https://github.com/nkeenan38/voice_activity_detector/pull/16))

## [0.0.4](https://github.com/nkeenan38/voice_activity_detector/compare/v0.0.3...v0.0.4) - 2024-04-19

### Other
- *(deps)* bump rustls from 0.22.2 to 0.22.4 in the cargo group ([#14](https://github.com/nkeenan38/voice_activity_detector/pull/14))

- _(deps)_ bump rustls from 0.22.2 to 0.22.4 in the cargo group ([#14](https://github.com/nkeenan38/voice_activity_detector/pull/14))
- Add platform support table to README.md ([#8](https://github.com/nkeenan38/voice_activity_detector/pull/8))

## [0.0.3](https://github.com/nkeenan38/voice_activity_detector/compare/v0.0.2...v0.0.3) - 2024-04-03

### Added

- remove const generic chunk size; add vad builder ([#12](https://github.com/nkeenan38/voice_activity_detector/pull/12))

### Other
- *(deps)* bump tokio from 1.36.0 to 1.37.0 ([#7](https://github.com/nkeenan38/voice_activity_detector/pull/7))

- _(deps)_ bump tokio from 1.36.0 to 1.37.0 ([#7](https://github.com/nkeenan38/voice_activity_detector/pull/7))

## [0.0.2](https://github.com/nkeenan38/voice_activity_detector/compare/v0.0.1...v0.0.2) - 2024-04-01

### Fixed

- update ort ([#5](https://github.com/nkeenan38/voice_activity_detector/pull/5))

## [0.0.1](https://github.com/nkeenan38/voice_activity_detector/compare/v0.0.0...v0.0.1) - 2024-03-24

### Other

- update github settings ([#3](https://github.com/nkeenan38/voice_activity_detector/pull/3))
- release ([#1](https://github.com/nkeenan38/voice_activity_detector/pull/1))

## [0.0.0](https://github.com/nkeenan38/voice_activity_detector/releases/tag/v0.0.0) - 2024-03-24

### Added

- initial release
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "voice_activity_detector"
version = "0.0.6"
version = "0.1.0"
edition = "2021"
authors = ["Nick Keenan <[email protected]>"]
description = "Voice Activity Detector using the Silero VAD model."
Expand All @@ -27,4 +27,4 @@ tokio-stream = { version = "0.1.14", features = ["full"] }

[features]
async = []
load-dynamic = ["ort/load-dynamic"]
load-dynamic = ["ort/load-dynamic"]

0 comments on commit 88662f8

Please sign in to comment.