Skip to content

Commit

Permalink
Version update to 1.5.0 (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
Saket Harsh authored Apr 23, 2021
1 parent f42c2c0 commit 9aaf03e
Show file tree
Hide file tree
Showing 17 changed files with 31 additions and 31 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,11 @@ By default the script will create a `release` package of the application in `out

Choose one of the following methods for deployment. Service Fabric best practice is to use arm templates for application deployments. Example template and argument files are located in [/arm](/arm) directory.

#### click button below to deploy using azure arm app template
#### Click button below to deploy using azure arm app template

[![Deploy to Azure](https://aka.ms/deploytoazurebutton)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Fmicrosoft%2FService-Fabric-POA%2Fmaster%2Farm%2Ftemplate.json)

#### using powershell
#### Using powershell

- Open PowerShell command prompt and go to the root of the repository.

Expand Down
4 changes: 2 additions & 2 deletions arm/template.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
"contentVersion": "1.0.0.0",
"parameters": {
"appPackageUrl": {
"defaultValue": "https://github.com/microsoft/Service-Fabric-POA/releases/download/v1.4.9/PatchOrchestrationApplication_v1.4.9.sfpkg",
"defaultValue": "https://github.com/microsoft/Service-Fabric-POA/releases/download/v1.5.0/PatchOrchestrationApplication_v1.5.0.sfpkg",
"metadata": {
"description": "The URL to the application package sfpkg file. example: https://github.com/microsoft/Service-Fabric-POA/releases/download/{{version}}/PatchOrchestrationApplication_{{version}}.sfpkg"
},
"type": "String"
},
"applicationTypeVersion": {
"defaultValue": "1.4.9",
"defaultValue": "1.5.0",
"metadata": {
"description": "The application type version."
},
Expand Down
4 changes: 2 additions & 2 deletions arm/template.parameters.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"contentVersion": "1.0.0.0",
"parameters": {
"appPackageUrl": {
"value": "https://github.com/microsoft/Service-Fabric-POA/releases/download/v1.4.9/PatchOrchestrationApplication_v1.4.9.sfpkg"
"value": "https://github.com/microsoft/Service-Fabric-POA/releases/download/v1.5.0/PatchOrchestrationApplication_v1.5.0.sfpkg"
},
"applicationTypeVersion": {
"value": "1.4.9"
"value": "1.5.0"
},
"clusterName": {
"value": "{{cluster name}}"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<ServiceManifest Name="CoordinatorServicePkg"
Version="1.4.9"
Version="1.5.0"
xmlns="http://schemas.microsoft.com/2011/01/fabric"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
Expand All @@ -11,7 +11,7 @@
</ServiceTypes>

<!-- Code package is your service executable. -->
<CodePackage Name="Code" Version="1.4.9">
<CodePackage Name="Code" Version="1.5.0">
<EntryPoint>
<ExeHost>
<Program>CoordinatorService.exe</Program>
Expand All @@ -21,7 +21,7 @@

<!-- Config package is the contents of the Config directoy under PackageRoot that contains an
independently-updateable and versioned set of custom configuration settings for your service. -->
<ConfigPackage Name="Config" Version="1.4.9" />
<ConfigPackage Name="Config" Version="1.5.0" />

<Resources>
<Endpoints>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
// Build Number
// Revision
//
[assembly: AssemblyVersion("1.4.9")]
[assembly: AssemblyFileVersion("1.4.9")]
[assembly: AssemblyVersion("1.5.0")]
[assembly: AssemblyFileVersion("1.5.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
// Build Number
// Revision
//
[assembly: AssemblyVersion("1.4.9")]
[assembly: AssemblyFileVersion("1.4.9")]
[assembly: AssemblyVersion("1.5.0")]
[assembly: AssemblyFileVersion("1.5.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
// Build Number
// Revision
//
[assembly: AssemblyVersion("1.4.9")]
[assembly: AssemblyFileVersion("1.4.9")]
[assembly: AssemblyVersion("1.5.0")]
[assembly: AssemblyFileVersion("1.5.0")]
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<ServiceManifest Name="NodeAgentServicePkg"
Version="1.4.9"
Version="1.5.0"
xmlns="http://schemas.microsoft.com/2011/01/fabric"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
Expand All @@ -11,7 +11,7 @@
</ServiceTypes>

<!-- Code package is your service executable. -->
<CodePackage Name="Code" Version="1.4.9">
<CodePackage Name="Code" Version="1.5.0">
<SetupEntryPoint>
<ExeHost>
<Program>SetupEntryPoint.bat</Program>
Expand All @@ -27,7 +27,7 @@

<!-- Config package is the contents of the Config directoy under PackageRoot that contains an
independently-updateable and versioned set of custom configuration settings for your service. -->
<ConfigPackage Name="Config" Version="1.4.9" />
<ConfigPackage Name="Config" Version="1.5.0" />

<Resources>
<Endpoints>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
// Build Number
// Revision
//
[assembly: AssemblyVersion("1.4.9")]
[assembly: AssemblyFileVersion("1.4.9")]
[assembly: AssemblyVersion("1.5.0")]
[assembly: AssemblyFileVersion("1.5.0")]
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<ApplicationManifest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ApplicationTypeName="PatchOrchestrationApplicationType" ApplicationTypeVersion="1.4.9" xmlns="http://schemas.microsoft.com/2011/01/fabric">
<ApplicationManifest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ApplicationTypeName="PatchOrchestrationApplicationType" ApplicationTypeVersion="1.5.0" xmlns="http://schemas.microsoft.com/2011/01/fabric">
<Parameters>
<Parameter Name="CoordinatorService_MinReplicaSetSize" DefaultValue="3" />
<Parameter Name="CoordinatorService_TargetReplicaSetSize" DefaultValue="3" />
Expand Down Expand Up @@ -54,7 +54,7 @@
should match the Name and Version attributes of the ServiceManifest element defined in the
ServiceManifest.xml file. -->
<ServiceManifestImport>
<ServiceManifestRef ServiceManifestName="CoordinatorServicePkg" ServiceManifestVersion="1.4.9" />
<ServiceManifestRef ServiceManifestName="CoordinatorServicePkg" ServiceManifestVersion="1.5.0" />
<ConfigOverrides>
<ConfigOverride Name="Config">
<Settings>
Expand All @@ -68,7 +68,7 @@
</ConfigOverrides>
</ServiceManifestImport>
<ServiceManifestImport>
<ServiceManifestRef ServiceManifestName="NodeAgentServicePkg" ServiceManifestVersion="1.4.9" />
<ServiceManifestRef ServiceManifestName="NodeAgentServicePkg" ServiceManifestVersion="1.5.0" />
<ConfigOverrides>
<ConfigOverride Name="Config">
<Settings>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<PropertyGroup Label="Configuration">
<Id>ServiceFabric.PatchOrchestrationApplication</Id>
<Title>ServiceFabric.PatchOrchestrationApplication</Title>
<Version>1.4.9</Version>
<Version>1.5.0</Version>
<Authors>brkhande;raunakp</Authors>
<Owners>brkhande;raunakp</Owners>
<Description>This package contains Service Fabric Patch Orchestration Application.</Description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Param
$ImageStoreConnectionString = "fabric:ImageStore",

[string]
$ApplicationVersion = "1.4.9",
$ApplicationVersion = "1.5.0",

[hashtable]
$ApplicationParameters = @{}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Param
$ImageStoreConnectionString = "fabric:ImageStore",

[string]
$ApplicationVersion = "1.4.9"
$ApplicationVersion = "1.5.0"
)

Remove-ServiceFabricApplication -ApplicationName fabric:/PatchOrchestrationApplication -Force
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Param
$ImageStoreConnectionString = "fabric:ImageStore",

[string]
$ApplicationVersion = "1.4.9",
$ApplicationVersion = "1.5.0",

[hashtable]
$ApplicationParameters = @{},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.4.9")]
[assembly: AssemblyFileVersion("1.4.9")]
[assembly: AssemblyVersion("1.5.0")]
[assembly: AssemblyFileVersion("1.5.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class TelemetryEvents
// Every time a new version of application would be release, manually update this version.
// This application version is used for telemetry
// For consistency keep this applicaiton version same as application version from application manifest.
private const string ApplicationVersion = "1.4.9";
private const string ApplicationVersion = "1.5.0";

public TelemetryEvents(FabricClient fabricClient, ITelemetryEventSource eventSource)
{
Expand Down
2 changes: 1 addition & 1 deletion src/properties/common.props
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
1. Assembly info
2. File info
3. Not yet in Telemetry of windows -->
<VersionPrefix>1.4.9</VersionPrefix>
<VersionPrefix>1.5.0</VersionPrefix>
<Company>Microsoft</Company>
<!--GenerateAssemblyInfo>false</GenerateAssemblyInfo-->
</PropertyGroup>
Expand Down

0 comments on commit 9aaf03e

Please sign in to comment.