diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index d7d358a..f38b47a 100755
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -1,2 +1,5 @@
+#### 0.1.0 - May 2017
+* FsShelter 0.1 update
+
#### 0.0.1-beta - May 2017
* Initial release
diff --git a/paket.lock b/paket.lock
index edaa159..1f51e67 100644
--- a/paket.lock
+++ b/paket.lock
@@ -16,7 +16,7 @@ NUGET
FSharp.Core (4.1.17) - redirects: force
System.ValueTuple (>= 4.3)
FsPickler (3.2)
- FsShelter (0.0.11)
+ FsShelter (0.1)
FsPickler (>= 2.0)
Google.Protobuf (>= 3.0.0-beta2)
Newtonsoft.Json (>= 8.0.2)
diff --git a/src/FsShelter.Extras.Tests/App.config b/src/FsShelter.Extras.Tests/App.config
index 438634f..f46bb4a 100644
--- a/src/FsShelter.Extras.Tests/App.config
+++ b/src/FsShelter.Extras.Tests/App.config
@@ -12,11 +12,6 @@
-
- True
-
-
-
True
diff --git a/src/FsShelter.Extras.Tests/AssemblyInfo.fs b/src/FsShelter.Extras.Tests/AssemblyInfo.fs
index 323b52a..0ca6b1a 100644
--- a/src/FsShelter.Extras.Tests/AssemblyInfo.fs
+++ b/src/FsShelter.Extras.Tests/AssemblyInfo.fs
@@ -5,8 +5,8 @@ open System.Reflection
[]
[]
[]
-[]
-[]
+[]
+[]
[]
do ()
@@ -14,6 +14,6 @@ module internal AssemblyVersionInformation =
let [] AssemblyTitle = "FsShelter.Extras.Tests"
let [] AssemblyProduct = "FsShelter.Extras"
let [] AssemblyDescription = "FsShelter components for building event-processing topologies"
- let [] AssemblyVersion = "0.0.1"
- let [] AssemblyFileVersion = "0.0.1"
+ let [] AssemblyVersion = "0.1.0"
+ let [] AssemblyFileVersion = "0.1.0"
let [] AssemblyConfiguration = "Release"
diff --git a/src/FsShelter.Extras/AssemblyInfo.fs b/src/FsShelter.Extras/AssemblyInfo.fs
index 3388185..8428ca1 100644
--- a/src/FsShelter.Extras/AssemblyInfo.fs
+++ b/src/FsShelter.Extras/AssemblyInfo.fs
@@ -5,8 +5,8 @@ open System.Reflection
[]
[]
[]
-[]
-[]
+[]
+[]
[]
do ()
@@ -14,6 +14,6 @@ module internal AssemblyVersionInformation =
let [] AssemblyTitle = "FsShelter.Extras"
let [] AssemblyProduct = "FsShelter.Extras"
let [] AssemblyDescription = "FsShelter components for building event-processing topologies"
- let [] AssemblyVersion = "0.0.1"
- let [] AssemblyFileVersion = "0.0.1"
+ let [] AssemblyVersion = "0.1.0"
+ let [] AssemblyFileVersion = "0.1.0"
let [] AssemblyConfiguration = "Release"
diff --git a/src/FsShelter.Extras/Deployment.fs b/src/FsShelter.Extras/Deployment.fs
index 416ca99..5741ac1 100644
--- a/src/FsShelter.Extras/Deployment.fs
+++ b/src/FsShelter.Extras/Deployment.fs
@@ -18,7 +18,7 @@ let defaultIncludes depPath =
/// Submit topology with specified includes, process host, arguments and configuration
/// to a Nimbus service running at the specified address and port
-let submit (topology:Topology.Topology<'t>) includes exePath mkCmdArgs conf address port =
+let submit (topology:Topology.Topology<'t>) includes exePath mkCmdArgs address port =
let nimbusTopology = topology |> ThriftModel.ofTopology (mkCmdArgs exePath)
Nimbus.withClient address port
(fun client ->
@@ -27,5 +27,5 @@ let submit (topology:Topology.Topology<'t>) includes exePath mkCmdArgs conf addr
Package.makeJar (Includes.aggregate includes) binDir (Path.Combine(binDir, topology.Name) + ".jar")
|> Nimbus.uploadJar client
nimbusTopology
- |> Nimbus.submit client (Some conf) uploadedFile)
+ |> Nimbus.submit client topology.Conf uploadedFile)