diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7aba05ee4..544c008b7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,8 @@
 
 ## **[Unreleased]**
 
+## 0.14.0 - 2020-02-20
+
 - [#1233](https://github.com/wasmerio/wasmer/pull/1233) Improved Wasmer C API release artifacts.
 - [#1216](https://github.com/wasmerio/wasmer/pull/1216) `wasmer-interface-types` receives a binary encoder.
 - [#1228](https://github.com/wasmerio/wasmer/pull/1228) Singlepass cleanup: Resolve several FIXMEs and remove protect_unix.
diff --git a/Cargo.lock b/Cargo.lock
index bc33f9a47..eb69230f1 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1706,7 +1706,7 @@ checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
 
 [[package]]
 name = "wasmer"
-version = "0.13.1"
+version = "0.14.0"
 dependencies = [
  "atty",
  "byteorder",
@@ -1737,7 +1737,7 @@ dependencies = [
 
 [[package]]
 name = "wasmer-clif-backend"
-version = "0.13.1"
+version = "0.14.0"
 dependencies = [
  "byteorder",
  "cranelift-codegen",
@@ -1787,14 +1787,14 @@ dependencies = [
 
 [[package]]
 name = "wasmer-dev-utils"
-version = "0.13.1"
+version = "0.14.0"
 dependencies = [
  "libc",
 ]
 
 [[package]]
 name = "wasmer-emscripten"
-version = "0.13.1"
+version = "0.14.0"
 dependencies = [
  "byteorder",
  "getrandom",
@@ -1807,7 +1807,7 @@ dependencies = [
 
 [[package]]
 name = "wasmer-emscripten-tests"
-version = "0.13.1"
+version = "0.14.0"
 dependencies = [
  "glob 0.3.0",
  "wabt",
@@ -1821,7 +1821,7 @@ dependencies = [
 
 [[package]]
 name = "wasmer-interface-types"
-version = "0.13.1"
+version = "0.14.0"
 dependencies = [
  "nom",
 ]
@@ -1836,7 +1836,7 @@ dependencies = [
 
 [[package]]
 name = "wasmer-llvm-backend"
-version = "0.13.1"
+version = "0.14.0"
 dependencies = [
  "byteorder",
  "cc",
@@ -1867,14 +1867,14 @@ dependencies = [
 
 [[package]]
 name = "wasmer-middleware-common"
-version = "0.13.1"
+version = "0.14.0"
 dependencies = [
  "wasmer-runtime-core",
 ]
 
 [[package]]
 name = "wasmer-middleware-common-tests"
-version = "0.13.1"
+version = "0.14.0"
 dependencies = [
  "criterion",
  "wabt",
@@ -1887,7 +1887,7 @@ dependencies = [
 
 [[package]]
 name = "wasmer-runtime"
-version = "0.13.1"
+version = "0.14.0"
 dependencies = [
  "criterion",
  "lazy_static",
@@ -1904,7 +1904,7 @@ dependencies = [
 
 [[package]]
 name = "wasmer-runtime-c-api"
-version = "0.13.1"
+version = "0.14.0"
 dependencies = [
  "cbindgen",
  "libc",
@@ -1916,7 +1916,7 @@ dependencies = [
 
 [[package]]
 name = "wasmer-runtime-core"
-version = "0.13.1"
+version = "0.14.0"
 dependencies = [
  "bincode",
  "blake3",
@@ -1942,7 +1942,7 @@ dependencies = [
 
 [[package]]
 name = "wasmer-runtime-core-tests"
-version = "0.13.1"
+version = "0.14.0"
 dependencies = [
  "wabt",
  "wasmer-clif-backend",
@@ -1953,7 +1953,7 @@ dependencies = [
 
 [[package]]
 name = "wasmer-singlepass-backend"
-version = "0.13.1"
+version = "0.14.0"
 dependencies = [
  "bincode",
  "byteorder",
@@ -1970,7 +1970,7 @@ dependencies = [
 
 [[package]]
 name = "wasmer-spectests"
-version = "0.13.1"
+version = "0.14.0"
 dependencies = [
  "glob 0.3.0",
  "wabt",
@@ -1982,7 +1982,7 @@ dependencies = [
 
 [[package]]
 name = "wasmer-wasi"
-version = "0.13.1"
+version = "0.14.0"
 dependencies = [
  "bincode",
  "byteorder",
@@ -1999,7 +1999,7 @@ dependencies = [
 
 [[package]]
 name = "wasmer-wasi-experimental-io-devices"
-version = "0.13.1"
+version = "0.14.0"
 dependencies = [
  "log",
  "minifb",
@@ -2012,7 +2012,7 @@ dependencies = [
 
 [[package]]
 name = "wasmer-wasi-tests"
-version = "0.13.1"
+version = "0.14.0"
 dependencies = [
  "glob 0.3.0",
  "wasmer-clif-backend",
@@ -2025,7 +2025,7 @@ dependencies = [
 
 [[package]]
 name = "wasmer-win-exception-handler"
-version = "0.13.1"
+version = "0.14.0"
 dependencies = [
  "cmake",
  "libc",
diff --git a/Cargo.toml b/Cargo.toml
index 25dc8d322..fb135aba7 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "wasmer"
-version = "0.13.1"
+version = "0.14.0"
 authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
 edition = "2018"
 repository = "https://github.com/wasmerio/wasmer"
diff --git a/lib/clif-backend/Cargo.toml b/lib/clif-backend/Cargo.toml
index 83818ec11..cffab51ff 100644
--- a/lib/clif-backend/Cargo.toml
+++ b/lib/clif-backend/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "wasmer-clif-backend"
-version = "0.13.1"
+version = "0.14.0"
 description = "Wasmer runtime Cranelift compiler backend"
 license = "MIT"
 authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
@@ -11,7 +11,7 @@ edition = "2018"
 readme = "README.md"
 
 [dependencies]
-wasmer-runtime-core = { path = "../runtime-core", version = "0.13.1" }
+wasmer-runtime-core = { path = "../runtime-core", version = "0.14.0" }
 cranelift-native = "0.52.0"
 cranelift-codegen = "0.52.0"
 cranelift-entity = "0.52.0"
@@ -37,4 +37,4 @@ version = "0.0.7"
 
 [target.'cfg(windows)'.dependencies]
 winapi = { version = "0.3", features = ["errhandlingapi", "minwindef", "minwinbase", "winnt"] }
-wasmer-win-exception-handler = { path = "../win-exception-handler", version = "0.13.1" }
+wasmer-win-exception-handler = { path = "../win-exception-handler", version = "0.14.0" }
diff --git a/lib/dev-utils/Cargo.toml b/lib/dev-utils/Cargo.toml
index 60db0143c..aa39fda03 100644
--- a/lib/dev-utils/Cargo.toml
+++ b/lib/dev-utils/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "wasmer-dev-utils"
-version = "0.13.1"
+version = "0.14.0"
 description = "Wasmer runtime core library"
 license = "MIT"
 authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
diff --git a/lib/emscripten-tests/Cargo.toml b/lib/emscripten-tests/Cargo.toml
index d87c2516e..217c2ae23 100644
--- a/lib/emscripten-tests/Cargo.toml
+++ b/lib/emscripten-tests/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "wasmer-emscripten-tests"
-version = "0.13.1"
+version = "0.14.0"
 description = "Tests for our Emscripten implementation"
 license = "MIT"
 authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
@@ -9,15 +9,15 @@ publish = false
 build = "build/mod.rs"
 
 [dependencies]
-wasmer-emscripten = { path = "../emscripten", version = "0.13.1" }
-wasmer-runtime = { path = "../runtime", version = "0.13.1", default-features = false }
-wasmer-clif-backend = { path = "../clif-backend", version = "0.13.1", optional = true}
-wasmer-llvm-backend = { path = "../llvm-backend", version = "0.13.1", optional = true, features = ["test"] }
-wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.13.1", optional = true }
+wasmer-emscripten = { path = "../emscripten", version = "0.14.0" }
+wasmer-runtime = { path = "../runtime", version = "0.14.0", default-features = false }
+wasmer-clif-backend = { path = "../clif-backend", version = "0.14.0", optional = true}
+wasmer-llvm-backend = { path = "../llvm-backend", version = "0.14.0", optional = true, features = ["test"] }
+wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.14.0", optional = true }
 
 [dev-dependencies]
 wabt = "0.9.1"
-wasmer-dev-utils = { path = "../dev-utils", version = "0.13.1"}
+wasmer-dev-utils = { path = "../dev-utils", version = "0.14.0"}
 
 [build-dependencies]
 glob = "0.3"
diff --git a/lib/emscripten/Cargo.toml b/lib/emscripten/Cargo.toml
index e3b7fde66..80e578bfd 100644
--- a/lib/emscripten/Cargo.toml
+++ b/lib/emscripten/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "wasmer-emscripten"
-version = "0.13.1"
+version = "0.14.0"
 description = "Wasmer runtime emscripten implementation library"
 license = "MIT"
 authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
@@ -15,7 +15,7 @@ lazy_static = "1.4"
 libc = "0.2.60"
 log = "0.4"
 time = "0.1"
-wasmer-runtime-core = { path = "../runtime-core", version = "0.13.1" }
+wasmer-runtime-core = { path = "../runtime-core", version = "0.14.0" }
 
 [target.'cfg(windows)'.dependencies]
 getrandom = "0.1"
diff --git a/lib/interface-types/Cargo.toml b/lib/interface-types/Cargo.toml
index a3d247479..4dc01538c 100644
--- a/lib/interface-types/Cargo.toml
+++ b/lib/interface-types/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "wasmer-interface-types"
-version = "0.13.1"
+version = "0.14.0"
 description = "WebAssembly Interface Types library for Wasmer"
 license = "MIT"
 authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
@@ -8,4 +8,4 @@ repository = "https://github.com/wasmerio/wasmer"
 edition = "2018"
 
 [dependencies]
-nom = "5.1"
\ No newline at end of file
+nom = "5.1"
diff --git a/lib/llvm-backend-tests/Cargo.toml b/lib/llvm-backend-tests/Cargo.toml
index 829880976..5bdd72cc5 100644
--- a/lib/llvm-backend-tests/Cargo.toml
+++ b/lib/llvm-backend-tests/Cargo.toml
@@ -9,8 +9,8 @@ edition = "2018"
 
 [dependencies]
 wabt = "0.9.1"
-wasmer-runtime-core = { path = "../runtime-core", version = "0.13.1" }
-wasmer-runtime = { path = "../runtime", version = "0.13.1" }
-wasmer-llvm-backend = { path = "../llvm-backend", version = "0.13.1", features = ["test"] }
+wasmer-runtime-core = { path = "../runtime-core", version = "0.14.0" }
+wasmer-runtime = { path = "../runtime", version = "0.14.0" }
+wasmer-llvm-backend = { path = "../llvm-backend", version = "0.14.0", features = ["test"] }
 
 [features]
diff --git a/lib/llvm-backend/Cargo.toml b/lib/llvm-backend/Cargo.toml
index bd5b12254..1df4e67be 100644
--- a/lib/llvm-backend/Cargo.toml
+++ b/lib/llvm-backend/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "wasmer-llvm-backend"
-version = "0.13.1"
+version = "0.14.0"
 license = "MIT"
 authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
 repository = "https://github.com/wasmerio/wasmer"
@@ -10,7 +10,7 @@ edition = "2018"
 readme = "README.md"
 
 [dependencies]
-wasmer-runtime-core = { path = "../runtime-core", version = "0.13.1" }
+wasmer-runtime-core = { path = "../runtime-core", version = "0.14.0" }
 wasmparser = "0.45.0"
 smallvec = "0.6"
 goblin = "0.0.24"
diff --git a/lib/middleware-common-tests/Cargo.toml b/lib/middleware-common-tests/Cargo.toml
index cc9438f4d..329b71ccc 100644
--- a/lib/middleware-common-tests/Cargo.toml
+++ b/lib/middleware-common-tests/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "wasmer-middleware-common-tests"
-version = "0.13.1"
+version = "0.14.0"
 authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
 edition = "2018"
 repository = "https://github.com/wasmerio/wasmer"
@@ -8,11 +8,11 @@ license = "MIT"
 publish = false
 
 [dependencies]
-wasmer-runtime-core = { path = "../runtime-core", version = "0.13.1" }
-wasmer-middleware-common = { path = "../middleware-common", version = "0.13.1" }
-wasmer-clif-backend = { path = "../clif-backend", version = "0.13.1", optional = true }
-wasmer-llvm-backend = { path = "../llvm-backend", version = "0.13.1", features = ["test"], optional = true }
-wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.13.1", optional = true }
+wasmer-runtime-core = { path = "../runtime-core", version = "0.14.0" }
+wasmer-middleware-common = { path = "../middleware-common", version = "0.14.0" }
+wasmer-clif-backend = { path = "../clif-backend", version = "0.14.0", optional = true }
+wasmer-llvm-backend = { path = "../llvm-backend", version = "0.14.0", features = ["test"], optional = true }
+wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.14.0", optional = true }
 
 [features]
 clif = ["wasmer-clif-backend"]
diff --git a/lib/middleware-common/Cargo.toml b/lib/middleware-common/Cargo.toml
index f9df7f3d2..a997bbc44 100644
--- a/lib/middleware-common/Cargo.toml
+++ b/lib/middleware-common/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "wasmer-middleware-common"
-version = "0.13.1"
+version = "0.14.0"
 repository = "https://github.com/wasmerio/wasmer"
 description = "Wasmer runtime common middlewares"
 license = "MIT"
@@ -10,4 +10,4 @@ categories = ["wasm"]
 edition = "2018"
 
 [dependencies]
-wasmer-runtime-core = { path = "../runtime-core", version = "0.13.1" }
+wasmer-runtime-core = { path = "../runtime-core", version = "0.14.0" }
diff --git a/lib/runtime-c-api/Cargo.toml b/lib/runtime-c-api/Cargo.toml
index 0fc3710b3..8744e7266 100644
--- a/lib/runtime-c-api/Cargo.toml
+++ b/lib/runtime-c-api/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "wasmer-runtime-c-api"
-version = "0.13.1"
+version = "0.14.0"
 description = "Wasmer C API library"
 documentation = "https://wasmerio.github.io/wasmer/c/runtime-c-api/"
 license = "MIT"
@@ -20,22 +20,22 @@ libc = "0.2.60"
 [dependencies.wasmer-runtime]
 default-features = false
 path = "../runtime"
-version = "0.13.1"
+version = "0.14.0"
 
 [dependencies.wasmer-runtime-core]
 default-features = false
 path = "../runtime-core"
-version = "0.13.1"
+version = "0.14.0"
 
 [dependencies.wasmer-wasi]
 default-features = false
 path = "../wasi"
-version = "0.13.1"
+version = "0.14.0"
 optional = true
 
 [dependencies.wasmer-emscripten]
 path = "../emscripten"
-version = "0.13.1"
+version = "0.14.0"
 optional = true
 
 [features]
diff --git a/lib/runtime-core-tests/Cargo.toml b/lib/runtime-core-tests/Cargo.toml
index 99813b470..cb6d6b25c 100644
--- a/lib/runtime-core-tests/Cargo.toml
+++ b/lib/runtime-core-tests/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "wasmer-runtime-core-tests"
-version = "0.13.1"
+version = "0.14.0"
 description = "Tests for the Wasmer runtime core crate"
 license = "MIT"
 authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
@@ -9,10 +9,10 @@ publish = false
 
 [dependencies]
 wabt = "0.9.1"
-wasmer-runtime-core = { path = "../runtime-core", version = "0.13.1" }
-wasmer-clif-backend = { path = "../clif-backend", version = "0.13.1", optional = true }
-wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.13.1", optional = true }
-wasmer-llvm-backend = { path = "../llvm-backend", version = "0.13.1", features = ["test"], optional = true }
+wasmer-runtime-core = { path = "../runtime-core", version = "0.14.0" }
+wasmer-clif-backend = { path = "../clif-backend", version = "0.14.0", optional = true }
+wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.14.0", optional = true }
+wasmer-llvm-backend = { path = "../llvm-backend", version = "0.14.0", features = ["test"], optional = true }
 
 [features]
 default = ["backend-cranelift"]
diff --git a/lib/runtime-core/Cargo.toml b/lib/runtime-core/Cargo.toml
index 7f07a9d2d..6ad0e7b7c 100644
--- a/lib/runtime-core/Cargo.toml
+++ b/lib/runtime-core/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "wasmer-runtime-core"
-version = "0.13.1"
+version = "0.14.0"
 description = "Wasmer runtime core library"
 license = "MIT"
 authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
diff --git a/lib/runtime/Cargo.toml b/lib/runtime/Cargo.toml
index 432f2b5a9..bd4194cf6 100644
--- a/lib/runtime/Cargo.toml
+++ b/lib/runtime/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "wasmer-runtime"
-version = "0.13.1"
+version = "0.14.0"
 description = "Wasmer runtime library"
 license = "MIT"
 authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
@@ -11,17 +11,17 @@ edition = "2018"
 readme = "README.md"
 
 [dependencies]
-wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.13.1", optional = true }
+wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.14.0", optional = true }
 lazy_static = "1.4"
 memmap = "0.7"
 
 [dependencies.wasmer-runtime-core]
 path = "../runtime-core"
-version = "0.13.1"
+version = "0.14.0"
 
 [dependencies.wasmer-clif-backend]
 path = "../clif-backend"
-version = "0.13.1"
+version = "0.14.0"
 optional = true
 
 # Dependencies for caching.
diff --git a/lib/singlepass-backend/Cargo.toml b/lib/singlepass-backend/Cargo.toml
index 6626cd6ae..e86c36ab2 100644
--- a/lib/singlepass-backend/Cargo.toml
+++ b/lib/singlepass-backend/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "wasmer-singlepass-backend"
-version = "0.13.1"
+version = "0.14.0"
 repository = "https://github.com/wasmerio/wasmer"
 description = "Wasmer runtime single pass compiler backend"
 license = "MIT"
@@ -11,7 +11,7 @@ edition = "2018"
 readme = "README.md"
 
 [dependencies]
-wasmer-runtime-core = { path = "../runtime-core", version = "0.13.1" }
+wasmer-runtime-core = { path = "../runtime-core", version = "0.14.0" }
 dynasm = "0.5"
 dynasmrt = "0.5"
 lazy_static = "1.4"
diff --git a/lib/spectests/Cargo.toml b/lib/spectests/Cargo.toml
index 8224ab273..d5bdd9717 100644
--- a/lib/spectests/Cargo.toml
+++ b/lib/spectests/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "wasmer-spectests"
-version = "0.13.1"
+version = "0.14.0"
 description = "Wasmer spectests library"
 license = "MIT"
 authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
@@ -9,10 +9,10 @@ edition = "2018"
 
 [dependencies]
 glob = "0.3"
-wasmer-runtime = { path = "../runtime", version = "0.13.1", default-features = false}
-wasmer-clif-backend = { path = "../clif-backend", version = "0.13.1", optional = true}
-wasmer-llvm-backend = { path = "../llvm-backend", version = "0.13.1", features = ["test"], optional = true }
-wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.13.1", optional = true }
+wasmer-runtime = { path = "../runtime", version = "0.14.0", default-features = false}
+wasmer-clif-backend = { path = "../clif-backend", version = "0.14.0", optional = true}
+wasmer-llvm-backend = { path = "../llvm-backend", version = "0.14.0", features = ["test"], optional = true }
+wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.14.0", optional = true }
 
 [build-dependencies]
 wabt = "0.9.1"
diff --git a/lib/wasi-experimental-io-devices/Cargo.toml b/lib/wasi-experimental-io-devices/Cargo.toml
index c98c46e78..bbce57713 100644
--- a/lib/wasi-experimental-io-devices/Cargo.toml
+++ b/lib/wasi-experimental-io-devices/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "wasmer-wasi-experimental-io-devices"
-version = "0.13.1"
+version = "0.14.0"
 authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
 edition = "2018"
 repository = "https://github.com/wasmerio/wasmer"
@@ -14,8 +14,8 @@ maintenance = { status = "experimental" }
 [dependencies]
 log = "0.4"
 minifb = "0.13"
-wasmer-wasi = { version = "0.13.1", path = "../wasi" }
-wasmer-runtime-core = { version = "0.13.1", path = "../runtime-core" }
+wasmer-wasi = { version = "0.14.0", path = "../wasi" }
+wasmer-runtime-core = { version = "0.14.0", path = "../runtime-core" }
 ref_thread_local = "0.0"
 serde = "1"
 typetag = "0.1"
diff --git a/lib/wasi-tests/Cargo.toml b/lib/wasi-tests/Cargo.toml
index ea9fca957..b4fa7915b 100644
--- a/lib/wasi-tests/Cargo.toml
+++ b/lib/wasi-tests/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "wasmer-wasi-tests"
-version = "0.13.1"
+version = "0.14.0"
 description = "Tests for our WASI implementation"
 license = "MIT"
 authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
@@ -10,18 +10,18 @@ build = "build/mod.rs"
 
 [dependencies]
 # We set default features to false to be able to use the singlepass backend properly
-wasmer-runtime = { path = "../runtime", version = "0.13.1", default-features = false }
-wasmer-wasi = { path = "../wasi", version = "0.13.1" }
+wasmer-runtime = { path = "../runtime", version = "0.14.0", default-features = false }
+wasmer-wasi = { path = "../wasi", version = "0.14.0" }
 # hack to get tests to work
-wasmer-clif-backend = { path = "../clif-backend", version = "0.13.1", optional = true}
-wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.13.1", optional = true }
-wasmer-llvm-backend = { path = "../llvm-backend", version = "0.13.1", features = ["test"], optional = true }
+wasmer-clif-backend = { path = "../clif-backend", version = "0.14.0", optional = true}
+wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.14.0", optional = true }
+wasmer-llvm-backend = { path = "../llvm-backend", version = "0.14.0", features = ["test"], optional = true }
 
 [build-dependencies]
 glob = "0.3"
 
 [dev-dependencies]
-wasmer-dev-utils = { path = "../dev-utils", version = "0.13.1"}
+wasmer-dev-utils = { path = "../dev-utils", version = "0.14.0"}
 
 [features]
 clif = ["wasmer-clif-backend", "wasmer-runtime/default-backend-cranelift"]
diff --git a/lib/wasi/Cargo.toml b/lib/wasi/Cargo.toml
index f6ad4b6a3..4dd5a6dbf 100644
--- a/lib/wasi/Cargo.toml
+++ b/lib/wasi/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "wasmer-wasi"
-version = "0.13.1"
+version = "0.14.0"
 description = "Wasmer runtime WASI implementation library"
 license = "MIT"
 authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
@@ -19,7 +19,7 @@ getrandom = "0.1"
 time = "0.1"
 typetag = "0.1"
 serde = { version = "1", features = ["derive"] }
-wasmer-runtime-core = { path = "../runtime-core", version = "0.13.1" }
+wasmer-runtime-core = { path = "../runtime-core", version = "0.14.0" }
 
 [target.'cfg(windows)'.dependencies]
 winapi = "0.3"
diff --git a/lib/win-exception-handler/Cargo.toml b/lib/win-exception-handler/Cargo.toml
index 6e305aa3d..95504170a 100644
--- a/lib/win-exception-handler/Cargo.toml
+++ b/lib/win-exception-handler/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "wasmer-win-exception-handler"
-version = "0.13.1"
+version = "0.14.0"
 description = "Wasmer runtime exception handling for Windows"
 license = "MIT"
 authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
@@ -8,7 +8,7 @@ repository = "https://github.com/wasmerio/wasmer"
 edition = "2018"
 
 [target.'cfg(windows)'.dependencies]
-wasmer-runtime-core = { path = "../runtime-core", version = "0.13.1" }
+wasmer-runtime-core = { path = "../runtime-core", version = "0.14.0" }
 winapi = { version = "0.3.8", features = ["winbase", "errhandlingapi", "minwindef", "minwinbase", "winnt"] }
 libc = "0.2.60"
 
diff --git a/scripts/update_version_numbers.sh b/scripts/update_version_numbers.sh
index 453af422d..21e6cdd66 100755
--- a/scripts/update_version_numbers.sh
+++ b/scripts/update_version_numbers.sh
@@ -1,5 +1,5 @@
-PREVIOUS_VERSION='0.13.0'
-NEXT_VERSION='0.13.1'
+PREVIOUS_VERSION='0.13.1'
+NEXT_VERSION='0.14.0'
 
 # quick hack
 fd Cargo.toml --exec sed -i '' "s/version = \"$PREVIOUS_VERSION\"/version = \"$NEXT_VERSION\"/"
diff --git a/src/installer/wasmer.iss b/src/installer/wasmer.iss
index 9a6091797..0ddf11414 100644
--- a/src/installer/wasmer.iss
+++ b/src/installer/wasmer.iss
@@ -1,6 +1,6 @@
 [Setup]
 AppName=Wasmer
-AppVersion=0.13.1
+AppVersion=0.14.0
 DefaultDirName={pf}\Wasmer
 DefaultGroupName=Wasmer
 Compression=lzma2