From 857a7840b3e8ffb4eb81ac8cfe31a64dc36d307a Mon Sep 17 00:00:00 2001
From: mitchmindtree <mitchell.nordine@gmail.com>
Date: Fri, 24 Apr 2020 12:42:21 +0200
Subject: [PATCH] Update all nannou crate versions to 0.14.

---
 examples/Cargo.toml          | 12 ++++++------
 generative_design/Cargo.toml |  2 +-
 guide/book_tests/Cargo.toml  |  4 ++--
 guide/src/why_nannou.md      |  4 ++--
 nannou/Cargo.toml            |  2 +-
 nannou_audio/Cargo.toml      |  2 +-
 nannou_isf/Cargo.toml        |  4 ++--
 nannou_laser/Cargo.toml      |  2 +-
 nannou_new/Cargo.toml        |  2 +-
 nannou_osc/Cargo.toml        |  2 +-
 nannou_package/Cargo.toml    |  2 +-
 nannou_timeline/Cargo.toml   |  4 ++--
 nature_of_code/Cargo.toml    |  2 +-
 13 files changed, 22 insertions(+), 22 deletions(-)

diff --git a/examples/Cargo.toml b/examples/Cargo.toml
index 915d59ae..a1f8ed45 100644
--- a/examples/Cargo.toml
+++ b/examples/Cargo.toml
@@ -18,12 +18,12 @@ audrey = "0.2"
 conrod_core = "0.69"
 futures = "0.3"
 hotglsl = { git = "https://github.com/nannou-org/hotglsl", branch = "master" }
-nannou = { version = "0.13", path = "../nannou" }
-nannou_audio = { version = "0.2", path = "../nannou_audio" }
-nannou_isf = { version = "0.1", path = "../nannou_isf" }
-nannou_laser = { version = "0.3", features = ["ffi"], path = "../nannou_laser" }
-nannou_osc = { version = "0.1", path = "../nannou_osc" }
-nannou_timeline = { version = "0.2", features = ["serde1"], path =  "../nannou_timeline" }
+nannou = { version ="0.14.0", path = "../nannou" }
+nannou_audio = { version ="0.14.0", path = "../nannou_audio" }
+nannou_isf = { version ="0.1.0", path = "../nannou_isf" }
+nannou_laser = { version ="0.14.0", features = ["ffi"], path = "../nannou_laser" }
+nannou_osc = { version ="0.14.0", path = "../nannou_osc" }
+nannou_timeline = { version ="0.14.0", features = ["serde1"], path =  "../nannou_timeline" }
 pitch_calc = { version = "0.12", features = ["serde"] }
 time_calc = { version= "0.13", features = ["serde"] }
 
diff --git a/generative_design/Cargo.toml b/generative_design/Cargo.toml
index ec720a86..7be0985c 100644
--- a/generative_design/Cargo.toml
+++ b/generative_design/Cargo.toml
@@ -14,7 +14,7 @@ homepage = "https://github.com/nannou-org/nannou"
 edition = "2018"
 
 [dev-dependencies]
-nannou = { version = "0.13.1", path = "../nannou" }
+nannou = { version ="0.14.0", path = "../nannou" }
 usvg = "0.4"
 wikipedia = "0.3"
 
diff --git a/guide/book_tests/Cargo.toml b/guide/book_tests/Cargo.toml
index 1d1f1af2..e45f0796 100644
--- a/guide/book_tests/Cargo.toml
+++ b/guide/book_tests/Cargo.toml
@@ -10,6 +10,6 @@ skeptic = "0.13"
 
 [dev-dependencies]
 skeptic = "0.13"
-nannou = { version = "0.13", path = "../../nannou" }
-nannou_osc = { version = "0.1.0", path = "../../nannou_osc" }
+nannou = { version ="0.14.0", path = "../../nannou" }
+nannou_osc = { version ="0.14.0", path = "../../nannou_osc" }
 
diff --git a/guide/src/why_nannou.md b/guide/src/why_nannou.md
index ab3c83ec..c27e8842 100644
--- a/guide/src/why_nannou.md
+++ b/guide/src/why_nannou.md
@@ -37,8 +37,8 @@ need:
   - [x] [Mesh](https://docs.rs/nannou/latest/nannou/mesh/index.html) API.
   - [x] [Image](https://docs.rs/nannou/latest/nannou/image/index.html) API.
   - [x] [Texture](https://docs.rs/nannou/latest/nannou/wgpu/struct.Texture.html) API.
-  - [x] [WGPU](https://docs.rs/nannou/0.13.1/nannou/wgpu/index.html) API.
-  - [x] [Text](https://docs.rs/nannou/0.13.1/nannou/text/index.html) API.
+  - [x] [WGPU](https://docs.rs/nannou/latest/nannou/wgpu/index.html) API.
+  - [x] [Text](https://docs.rs/nannou/latest/nannou/text/index.html) API.
   - [ ] Shader hot-loading. *See
     [hotglsl](https://github.com/nannou-org/hotglsl) and [nannou_isf
     WIP](https://github.com/nannou-org/nannou/tree/master/nannou_isf)*.
diff --git a/nannou/Cargo.toml b/nannou/Cargo.toml
index 75bed041..22660460 100644
--- a/nannou/Cargo.toml
+++ b/nannou/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "nannou"
-version = "0.13.1"
+version ="0.14.0"
 authors = ["mitchmindtree <mitchell.nordine@gmail.com>"]
 description = "A Creative Coding Framework for Rust."
 readme = "README.md"
diff --git a/nannou_audio/Cargo.toml b/nannou_audio/Cargo.toml
index b0339cf6..ba8280ec 100644
--- a/nannou_audio/Cargo.toml
+++ b/nannou_audio/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "nannou_audio"
-version = "0.2.0"
+version ="0.14.0"
 authors = ["mitchmindtree <mitchell.nordine@gmail.com>"]
 description = "The audio API for Nannou, the creative coding framework."
 readme = "README.md"
diff --git a/nannou_isf/Cargo.toml b/nannou_isf/Cargo.toml
index df3abb57..8cc59e0d 100644
--- a/nannou_isf/Cargo.toml
+++ b/nannou_isf/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "nannou_isf"
-version = "0.1.0"
+version ="0.1.0"
 authors = ["mitchmindtree <mitchell.nordine@gmail.com>"]
 edition = "2018"
 
@@ -9,7 +9,7 @@ edition = "2018"
 [dependencies]
 hotglsl = { git = "https://github.com/nannou-org/hotglsl", branch = "master" }
 isf = { git = "https://github.com/nannou-org/isf", branch = "master" }
-nannou = { version = "0.13", path = "../nannou" }
+nannou = { version ="0.14.0", path = "../nannou" }
 thiserror = "1"
 threadpool = "1"
 walkdir = "2"
diff --git a/nannou_laser/Cargo.toml b/nannou_laser/Cargo.toml
index 3d1171dc..4f64b35e 100644
--- a/nannou_laser/Cargo.toml
+++ b/nannou_laser/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "nannou_laser"
-version = "0.3.0"
+version ="0.14.0"
 authors = ["mitchmindtree <mitchell.nordine@gmail.com>"]
 description = "A cross-platform laser DAC detection and streaming API."
 edition = "2018"
diff --git a/nannou_new/Cargo.toml b/nannou_new/Cargo.toml
index 08b9f3c1..55b91178 100644
--- a/nannou_new/Cargo.toml
+++ b/nannou_new/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "nannou_new"
-version = "0.1.1"
+version ="0.14.0"
 authors = ["mitchmindtree <mitchell.nordine@gmail.com>"]
 description = "A tool for easily starting Nannou projects."
 readme = "README.md"
diff --git a/nannou_osc/Cargo.toml b/nannou_osc/Cargo.toml
index 04754e6c..e7a09452 100644
--- a/nannou_osc/Cargo.toml
+++ b/nannou_osc/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "nannou_osc"
-version = "0.1.0"
+version ="0.14.0"
 authors = ["mitchmindtree <mitchell.nordine@gmail.com>"]
 description = "The OSC API for Nannou, the creative coding framework."
 readme = "README.md"
diff --git a/nannou_package/Cargo.toml b/nannou_package/Cargo.toml
index 0504b32a..e2ca7de4 100644
--- a/nannou_package/Cargo.toml
+++ b/nannou_package/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "nannou_package"
-version = "0.1.0"
+version ="0.14.0"
 authors = ["mitchmindtree <mitchell.nordine@gmail.com>"]
 description = "The build packaging tool for the Nannou Creative Coding Framework."
 readme = "README.md"
diff --git a/nannou_timeline/Cargo.toml b/nannou_timeline/Cargo.toml
index cc3545dd..cc46da43 100644
--- a/nannou_timeline/Cargo.toml
+++ b/nannou_timeline/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "nannou_timeline"
-version = "0.2.0"
+version ="0.14.0"
 authors = ["mitchmindtree <mitchell.nordine@gmail.com>"]
 description = "A timeline widget, compatible with all conrod GUI projects."
 readme = "README.md"
@@ -27,6 +27,6 @@ serde1 = [
 ]
 
 [dev-dependencies]
-nannou = { version = "0.13", path = "../nannou" }
+nannou = { version ="0.14.0", path = "../nannou" }
 rand = "0.3.12"
 serde_json = "1.0"
diff --git a/nature_of_code/Cargo.toml b/nature_of_code/Cargo.toml
index aa0a279e..489cde07 100644
--- a/nature_of_code/Cargo.toml
+++ b/nature_of_code/Cargo.toml
@@ -14,7 +14,7 @@ homepage = "https://github.com/nannou-org/nannou"
 edition = "2018"
 
 [dev-dependencies]
-nannou = { version = "0.13.1", path = "../nannou" }
+nannou = { version ="0.14.0", path = "../nannou" }
 
 # Chapter 1 Vectors
 [[example]]
-- 
GitLab