Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publish version 0.15 #658

Merged
merged 2 commits into from
Oct 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ edition = "2018"
audrey = "0.2"
futures = "0.3"
hotglsl = { git = "https://github.com/nannou-org/hotglsl", branch = "master" }
nannou = { version ="0.14.1", path = "../nannou" }
nannou_audio = { version ="0.14.0", path = "../nannou_audio" }
nannou = { version ="0.15.0", path = "../nannou" }
nannou_audio = { version ="0.15.0", path = "../nannou_audio" }
nannou_isf = { version ="0.1.0", path = "../nannou_isf" }
nannou_laser = { version ="0.14.1", features = ["ffi", "ilda-idtf"], path = "../nannou_laser" }
nannou_osc = { version ="0.14.0", path = "../nannou_osc" }
nannou_timeline = { version ="0.14.0", features = ["serde1"], path = "../nannou_timeline" }
nannou_laser = { version ="0.15.0", features = ["ffi", "ilda-idtf"], path = "../nannou_laser" }
nannou_osc = { version ="0.15.0", path = "../nannou_osc" }
nannou_timeline = { version ="0.15.0", features = ["serde1"], path = "../nannou_timeline" }
pitch_calc = { version = "0.12", features = ["serde"] }
time_calc = { version= "0.13", features = ["serde"] }
walkdir = "2"
Expand Down
2 changes: 1 addition & 1 deletion generative_design/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ homepage = "https://github.com/nannou-org/nannou"
edition = "2018"

[dev-dependencies]
nannou = { version ="0.14.1", path = "../nannou" }
nannou = { version ="0.15.0", path = "../nannou" }
usvg = "0.4"
wikipedia = "0.3"

Expand Down
4 changes: 2 additions & 2 deletions guide/book_tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ skeptic = { git = "https://github.com/mitchmindtree/rust-skeptic", branch = "1.4
# https://github.com/budziq/rust-skeptic/pull/121
skeptic = { git = "https://github.com/mitchmindtree/rust-skeptic", branch = "1.45-extern" }
#skeptic = "0.13"
nannou = { version ="0.14.0", path = "../../nannou" }
nannou_osc = { version ="0.14.0", path = "../../nannou_osc" }
nannou = { version ="0.15.0", path = "../../nannou" }
nannou_osc = { version ="0.15.0", path = "../../nannou_osc" }

6 changes: 6 additions & 0 deletions guide/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ back to the origins.

# Unreleased

*There are no unreleased changes yet.*

---

# Version 0.15.0 (2020-10-04)

**Update to WGPU 0.5**

For the most part, these changes will affect users of the `nannou::wgpu` module,
Expand Down
8 changes: 4 additions & 4 deletions guide/src/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
Considering contributing to nannou? Awesome! Hopefully this section can guide
you in the right direction.

- [**About the Codebase**](./about-the-codebase.md)
- [**PR Checklist**](./pr-checklist.md)
- [**PR Reviews**](./pr-reviews.md)
- [**Publish New Versions**](./publish-new-versions.md)
- [**About the Codebase**](./contributing/about-the-codebase.md)
- [**PR Checklist**](./contributing/pr-checklist.md)
- [**PR Reviews**](./contributing/pr-reviews.md)
- [**Publishing New Versions**](./contributing/publishing-new-versions.md)

## Still have questions?

Expand Down
4 changes: 2 additions & 2 deletions guide/src/getting_started/create_a_project.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ create a new project with just a few small steps:
version = "0.1.0"
authors = ["mitchmindtree <mitchell.nordine@gmail.com>"]
edition = "2018"

[dependencies]
nannou = "0.14"
nannou = "0.15"
```

Note that there is a chance the nannou version above might be out of date.
Expand Down
2 changes: 1 addition & 1 deletion nannou/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nannou"
version ="0.14.1"
version ="0.15.0"
authors = ["mitchmindtree <mitchell.nordine@gmail.com>"]
description = "A Creative Coding Framework for Rust."
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion nannou_audio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nannou_audio"
version ="0.14.0"
version ="0.15.0"
authors = ["mitchmindtree <mitchell.nordine@gmail.com>"]
description = "The audio API for Nannou, the creative coding framework."
readme = "README.md"
Expand Down
4 changes: 1 addition & 3 deletions nannou_isf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,10 @@ version ="0.1.0"
authors = ["mitchmindtree <mitchell.nordine@gmail.com>"]
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
hotglsl = { git = "https://github.com/nannou-org/hotglsl", branch = "master" }
isf = { git = "https://github.com/nannou-org/isf", branch = "master" }
nannou = { version ="0.14.0", path = "../nannou" }
nannou = { version ="0.15.0", path = "../nannou" }
thiserror = "1"
threadpool = "1"
walkdir = "2"
2 changes: 1 addition & 1 deletion nannou_laser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nannou_laser"
version ="0.14.3"
version ="0.15.0"
authors = ["mitchmindtree <mitchell.nordine@gmail.com>"]
description = "A cross-platform laser DAC detection and streaming API."
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion nannou_new/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nannou_new"
version ="0.14.0"
version ="0.15.0"
authors = ["mitchmindtree <mitchell.nordine@gmail.com>"]
description = "A tool for easily starting Nannou projects."
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion nannou_osc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nannou_osc"
version ="0.14.0"
version ="0.15.0"
authors = ["mitchmindtree <mitchell.nordine@gmail.com>"]
description = "The OSC API for Nannou, the creative coding framework."
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion nannou_package/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nannou_package"
version ="0.14.0"
version ="0.15.0"
authors = ["mitchmindtree <mitchell.nordine@gmail.com>"]
description = "The build packaging tool for the Nannou Creative Coding Framework."
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions nannou_timeline/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nannou_timeline"
version ="0.14.0"
version ="0.15.0"
authors = ["mitchmindtree <mitchell.nordine@gmail.com>"]
description = "A timeline widget, compatible with all conrod GUI projects."
readme = "README.md"
Expand All @@ -27,6 +27,6 @@ serde1 = [
]

[dev-dependencies]
nannou = { version ="0.14.0", path = "../nannou" }
nannou = { version ="0.15.0", path = "../nannou" }
rand = "0.3.12"
serde_json = "1.0"
2 changes: 1 addition & 1 deletion nature_of_code/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ homepage = "https://github.com/nannou-org/nannou"
edition = "2018"

[dev-dependencies]
nannou = { version ="0.14.1", path = "../nannou" }
nannou = { version ="0.15.0", path = "../nannou" }

# Chapter 1 Vectors
[[example]]
Expand Down