Skip to content

Commit

Permalink
Bump version to 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugene Tolmachev committed Jul 4, 2017
1 parent 8726b1a commit 05572c5
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 16 deletions.
3 changes: 3 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
#### 0.1.0 - May 2017
* FsShelter 0.1 update

#### 0.0.1-beta - May 2017
* Initial release
2 changes: 1 addition & 1 deletion paket.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
5 changes: 0 additions & 5 deletions src/FsShelter.Extras.Tests/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,6 @@
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="4.4.1.0" />
</dependentAssembly>
<dependentAssembly>
<Paket>True</Paket>
<assemblyIdentity name="Google.Protobuf" publicKeyToken="a7d26565bac4d604" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="3.3.0.0" />
</dependentAssembly>
<dependentAssembly>
<Paket>True</Paket>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
Expand Down
8 changes: 4 additions & 4 deletions src/FsShelter.Extras.Tests/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FsShelter.Extras.Tests")>]
[<assembly: AssemblyProductAttribute("FsShelter.Extras")>]
[<assembly: AssemblyDescriptionAttribute("FsShelter components for building event-processing topologies")>]
[<assembly: AssemblyVersionAttribute("0.0.1")>]
[<assembly: AssemblyFileVersionAttribute("0.0.1")>]
[<assembly: AssemblyVersionAttribute("0.1.0")>]
[<assembly: AssemblyFileVersionAttribute("0.1.0")>]
[<assembly: AssemblyConfigurationAttribute("Release")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FsShelter.Extras.Tests"
let [<Literal>] AssemblyProduct = "FsShelter.Extras"
let [<Literal>] AssemblyDescription = "FsShelter components for building event-processing topologies"
let [<Literal>] AssemblyVersion = "0.0.1"
let [<Literal>] AssemblyFileVersion = "0.0.1"
let [<Literal>] AssemblyVersion = "0.1.0"
let [<Literal>] AssemblyFileVersion = "0.1.0"
let [<Literal>] AssemblyConfiguration = "Release"
8 changes: 4 additions & 4 deletions src/FsShelter.Extras/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("FsShelter.Extras")>]
[<assembly: AssemblyProductAttribute("FsShelter.Extras")>]
[<assembly: AssemblyDescriptionAttribute("FsShelter components for building event-processing topologies")>]
[<assembly: AssemblyVersionAttribute("0.0.1")>]
[<assembly: AssemblyFileVersionAttribute("0.0.1")>]
[<assembly: AssemblyVersionAttribute("0.1.0")>]
[<assembly: AssemblyFileVersionAttribute("0.1.0")>]
[<assembly: AssemblyConfigurationAttribute("Release")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FsShelter.Extras"
let [<Literal>] AssemblyProduct = "FsShelter.Extras"
let [<Literal>] AssemblyDescription = "FsShelter components for building event-processing topologies"
let [<Literal>] AssemblyVersion = "0.0.1"
let [<Literal>] AssemblyFileVersion = "0.0.1"
let [<Literal>] AssemblyVersion = "0.1.0"
let [<Literal>] AssemblyFileVersion = "0.1.0"
let [<Literal>] AssemblyConfiguration = "Release"
4 changes: 2 additions & 2 deletions src/FsShelter.Extras/Deployment.fs
Original file line number Diff line number Diff line change
Expand Up @@ -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 ->
Expand All @@ -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)

0 comments on commit 05572c5

Please sign in to comment.