Skip to content

Commit

Permalink
Bump version to 1.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
josesimoes authored Mar 14, 2024
1 parent 7910510 commit aa74772
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 37 deletions.
8 changes: 4 additions & 4 deletions azure-pipelines-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ jobs:
variables:
DOTNET_NOLOGO: true
# creates a counter and assigns it to the revision variable
REVISION: $[counter('STM32_1_9_0_versioncounter', 0)]
REVISION: $[counter('STM32_1_9_1_versioncounter', 0)]
HelperPackageVersion: $[counter('HelperPackageVersioncounter', 0)]
TargetPlatform: 'stm32'

Expand Down Expand Up @@ -493,7 +493,7 @@ jobs:
variables:
DOTNET_NOLOGO: true
# creates a counter and assigns it to the revision variable
REVISION: $[counter('ESP32_1_9_0_versioncounter', 0)]
REVISION: $[counter('ESP32_1_9_1_versioncounter', 0)]
IDF_PATH: 'D:/a/1/s/esp-idf'
PIP_CACHE_DIR: $(Pipeline.Workspace)/.pip
TargetPlatform: 'esp32'
Expand Down Expand Up @@ -569,7 +569,7 @@ jobs:
variables:
DOTNET_NOLOGO: true
# creates a counter and assigns it to the revision variable
REVISION: $[counter('TI_1_9_0_versioncounter', 0)]
REVISION: $[counter('TI_1_9_1_versioncounter', 0)]
HelperPackageVersion: $[counter('HelperPackageVersioncounter', 0)]
TargetPlatform: 'ti_simplelink'

Expand Down Expand Up @@ -621,7 +621,7 @@ jobs:

variables:
# creates a counter and assigns it to the revision variable
REVISION: $[counter('AZURERTOS_1_9_0_versioncounter', 0)]
REVISION: $[counter('AZURERTOS_1_9_1_versioncounter', 0)]
HelperPackageVersion: $[counter('HelperPackageVersioncounter', 0)]
TargetPlatform: 'azure_rtos'

Expand Down
12 changes: 6 additions & 6 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ jobs:
variables:
DOTNET_NOLOGO: true
# creates a counter and assigns it to the revision variable
REVISION: $[counter('STM32_1_9_0_versioncounter', 0)]
REVISION: $[counter('STM32_1_9_1_versioncounter', 0)]
HelperPackageVersion: $[counter('HelperPackageVersioncounter', 0)]
TargetPlatform: 'stm32'

Expand Down Expand Up @@ -518,7 +518,7 @@ jobs:
variables:
DOTNET_NOLOGO: true
# creates a counter and assigns it to the revision variable
REVISION: $[counter('ESP32_1_9_0_versioncounter', 0)]
REVISION: $[counter('ESP32_1_9_1_versioncounter', 0)]
IDF_PATH: 'D:/a/1/s/esp-idf'
PIP_CACHE_DIR: $(Pipeline.Workspace)/.pip
TargetPlatform: 'esp32'
Expand Down Expand Up @@ -599,7 +599,7 @@ jobs:
variables:
DOTNET_NOLOGO: true
# creates a counter and assigns it to the revision variable
REVISION: $[counter('NXP_1_9_0_versioncounter', 0)]
REVISION: $[counter('NXP_1_9_1_versioncounter', 0)]
GIT_LFS_SKIP_SMUDGE: 1
TargetPlatform: 'freertos'

Expand Down Expand Up @@ -677,7 +677,7 @@ jobs:
variables:
DOTNET_NOLOGO: true
# creates a counter and assigns it to the revision variable
REVISION: $[counter('TI_1_9_0_versioncounter', 0)]
REVISION: $[counter('TI_1_9_1_versioncounter', 0)]
HelperPackageVersion: $[counter('HelperPackageVersioncounter', 0)]
TargetPlatform: 'ti_simplelink'

Expand Down Expand Up @@ -748,7 +748,7 @@ jobs:

variables:
# creates a counter and assigns it to the revision variable
REVISION: $[counter('AZURERTOS_1_9_0_versioncounter', 0)]
REVISION: $[counter('AZURERTOS_1_9_1_versioncounter', 0)]
HelperPackageVersion: $[counter('HelperPackageVersioncounter', 0)]
TargetPlatform: 'azure_rtos'

Expand Down Expand Up @@ -799,7 +799,7 @@ jobs:
value: true
# creates a counter and assigns it to the revision variable
- name: REVISION
value: $[counter('WIN32_1_9_0_versioncounter', 0)]
value: $[counter('WIN32_1_9_1_versioncounter', 0)]

steps:
- template: azure-pipelines-templates/nb-gitversioning.yml
Expand Down
54 changes: 27 additions & 27 deletions version.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
{
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
"version": "1.9.0",
"assemblyVersion": {
"precision": "revision"
},
"semVer1NumericIdentifierPadding": 3,
"nuGetPackageVersion": {
"semVer": 2.0
},
"publicReleaseRefSpec": [
"refs/head/*"
],
"cloudBuild": {
"setAllVariables": true,
"buildNumber": {
"enabled": false,
"includeCommitId": {
"when": "always"
}
}
},
"release": {
"branchName": "release-v{version}",
"versionIncrement": "build",
"firstUnstableTag": "preview"
}
{
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
"version": "1.9.1",
"assemblyVersion": {
"precision": "revision"
},
"semVer1NumericIdentifierPadding": 3,
"nuGetPackageVersion": {
"semVer": 2.0
},
"publicReleaseRefSpec": [
"refs/head/*"
],
"cloudBuild": {
"setAllVariables": true,
"buildNumber": {
"enabled": false,
"includeCommitId": {
"when": "always"
}
}
},
"release": {
"branchName": "release-v{version}",
"versionIncrement": "build",
"firstUnstableTag": "preview"
}
}

0 comments on commit aa74772

Please sign in to comment.