This repository has been archived by the owner on Oct 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create RELEASES.md and update Cargo.toml. (#94)
- Loading branch information
PieterPenninckx
authored
Aug 28, 2020
1 parent
3a29506
commit 6424669
Showing
2 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rsynth" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
authors = ["Alexander Lozada <[email protected]>", "Pieter Penninckx"] | ||
description = "A library for developing audio plugins and applications, with a focus on software synthesis." | ||
license = "MIT OR BSD-3-Clause" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
Version 0.1.1 | ||
============= | ||
* Clarify copyright (MIT/3 clause BSD) (synchronise Cargo.toml with README.md). | ||
* Deprecate envelopes. | ||
* Polyphony has been deprecated in favour of the `polyphony` crate. | ||
* Move from the `sample` crate to `dasp_sample` to reduce compile times a little. | ||
* Re-export jack-specific data types to make it easier to upgrade `jack` without breaking things. | ||
* Give access to jack backend in callbacks. | ||
* Implement `Display` and `Error` for `HoundAudioError` and for `CombinedError`. | ||
|
||
Version 0.1.0 | ||
============= | ||
* Add support for jack as a backend | ||
* Add an abstraction for audio buffers | ||
* Add support for offline rendering | ||
* Add a backend independent mechanism for specifying meta-data. It also has a “user friendly” way for specifying the meta-data. | ||
* Lots of edits to the documentation | ||
* Lots and lots of refactoring big and small | ||
|
||
Version 0.0.1 | ||
============= | ||
Initial release. |