From 8253030d3d63a2c8fae44456a66332268c05f342 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Sim=C3=B5es?= Date: Tue, 16 Oct 2018 12:35:52 +0100 Subject: [PATCH 01/14] Update appveyor.yml --- appveyor.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/appveyor.yml b/appveyor.yml index 4439096..4435679 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -47,6 +47,7 @@ init: - ps: Add-Content "$env:USERPROFILE\.git-credentials" "https://$($env:GitHubToken):x-oauth-basic@github.com`n" - git config --global user.email "%GitHubUserEmail%" - git config --global user.name "%GitHubUserName%" + - ps: "$headers = if($env:APPVEYOR_PULL_REQUEST_NUMBER){\n @{\n \"Authorization\" = \"Basic $env:GitRestAuth\"\n \"Content-type\" = \"application/json\"\n}\n\n$pr = Invoke-RestMethod -Uri \"https://api.github.com/repos/nanoframework/nf-interpreter/pulls/$env:APPVEYOR_PULL_REQUEST_NUMBER\" -Headers $headers -Method GET\n\nif($pr.user.login -eq \"nfbot\" -and $pr.body -match \"\\[version update\\]\")\n{\n # commit was from nfbot AND it's taged as a [version update]\n # OK to skip AppVeyor build \n \"Version update only. Skipping build.\" | Write-Host -BackgroundColor White -ForegroundColor Blue\n Exit-AppveyorBuild\n} }\n" install: - set PATH=C:\Ruby%RUBY_VERSION%\bin;%PATH% From 04484743c96686f20d8e514d36ebdff6dbbb71cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Sim=C3=B5es?= Date: Tue, 16 Oct 2018 16:31:49 +0100 Subject: [PATCH 02/14] Update commit-assemblyinfo-changes.ps1 --- commit-assemblyinfo-changes.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commit-assemblyinfo-changes.ps1 b/commit-assemblyinfo-changes.ps1 index 161c95c..bc6e4d1 100644 --- a/commit-assemblyinfo-changes.ps1 +++ b/commit-assemblyinfo-changes.ps1 @@ -7,7 +7,7 @@ else { # updated assembly info files git add "source\nanoFramework.Runtime.Native\Properties\AssemblyInfo.cs" - git commit -m "Update assembly info file for v$env:GitVersion_NuGetVersionV2" -m"[version update]" + git commit -m "Update assembly info file for v$env:GitVersion_NuGetVersionV2 [skip ci]" -m"[version update]" git push origin --porcelain -q > $null 'Updated assembly info...' | Write-Host -ForegroundColor White -NoNewline From 074358da69d0f02b8f8141ea5a464d0d3354f5a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Sim=C3=B5es?= Date: Tue, 16 Oct 2018 16:32:27 +0100 Subject: [PATCH 03/14] Update appveyor.yml --- appveyor.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 4435679..4250c56 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -4,6 +4,7 @@ branches: - master - /dev.*/ - /release.*/ + - /v.*/ image: Visual Studio 2017 @@ -42,12 +43,13 @@ environment: secure: E3bCMe4LtDdAhHSYRcLp0N6DixJe1m8TNxhYeJW/GnqM3WXdRqsgkHSbwootPjJQtOQJrps4twmzTVzofLSVgPgbzU8PxU0AkJV7zwkyVOE= init: - - git config --global core.autocrlf true - - git config --global credential.helper store - - ps: Add-Content "$env:USERPROFILE\.git-credentials" "https://$($env:GitHubToken):x-oauth-basic@github.com`n" - - git config --global user.email "%GitHubUserEmail%" - - git config --global user.name "%GitHubUserName%" - - ps: "$headers = if($env:APPVEYOR_PULL_REQUEST_NUMBER){\n @{\n \"Authorization\" = \"Basic $env:GitRestAuth\"\n \"Content-type\" = \"application/json\"\n}\n\n$pr = Invoke-RestMethod -Uri \"https://api.github.com/repos/nanoframework/nf-interpreter/pulls/$env:APPVEYOR_PULL_REQUEST_NUMBER\" -Headers $headers -Method GET\n\nif($pr.user.login -eq \"nfbot\" -and $pr.body -match \"\\[version update\\]\")\n{\n # commit was from nfbot AND it's taged as a [version update]\n # OK to skip AppVeyor build \n \"Version update only. Skipping build.\" | Write-Host -BackgroundColor White -ForegroundColor Blue\n Exit-AppveyorBuild\n} }\n" +- git config --global core.autocrlf true +- git config --global credential.helper store +- ps: Add-Content "$env:USERPROFILE\.git-credentials" "https://$($env:GitHubToken):x-oauth-basic@github.com`n" +- git config --global user.email "%GitHubUserEmail%" +- git config --global user.name "%GitHubUserName%" +- ps: "$headers = if($env:APPVEYOR_PULL_REQUEST_NUMBER){\n @{\n \"Authorization\" = \"Basic $env:GitRestAuth\"\n \"Content-type\" = \"application/json\"\n}\n\n$pr = Invoke-RestMethod -Uri \"https://api.github.com/repos/$env:APPVEYOR_REPO_NAME/pulls/$env:APPVEYOR_PULL_REQUEST_NUMBER\" -Headers $headers -Method GET\n\nif($pr.user.login -eq \"nfbot\" -and $pr.body -match \"*[version update]*\")\n{\n # commit was from nfbot AND it's taged as a [version update]\n # OK to skip AppVeyor build \n \"Version update only. Skipping build.\" | Write-Host -BackgroundColor White -ForegroundColor Blue\n Exit-AppveyorBuild\n} }\n" +- ps: "if($env:APPVEYOR_PULL_REQUEST_NUMBER -eq \"\")\n{\n \n if($env:APPVEYOR_REPO_COMMIT_AUTHOR -eq \"nfbot\" -and $env:APPVEYOR_REPO_COMMIT_MESSAGE_EXTENDED -like \"*[version update]*\")\n {\n # commit was from nfbot AND it's taged as a [version update]\n # OK to skip AppVeyor build \n \"Version update only. Skipping build.\" | Write-Host -BackgroundColor White -ForegroundColor Blue\n Exit-AppveyorBuild\n }\n}" install: - set PATH=C:\Ruby%RUBY_VERSION%\bin;%PATH% @@ -98,6 +100,7 @@ for: branches: only: - master + - /v.*/ deploy: - provider: NuGet From 9c12b792eca4e609b2d6bc017b4b3d5f2ab3da91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Sim=C3=B5es?= Date: Wed, 17 Oct 2018 11:48:26 +0100 Subject: [PATCH 04/14] Improvements on CI & CD MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: José Simões --- appveyor.yml | 24 ++++++++++++------------ commit-assemblyinfo-changes.ps1 | 20 ++++++++++++++++---- generate-change-log.ps1 | 29 +++++++++++++++++++++-------- 3 files changed, 49 insertions(+), 24 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 4250c56..5676072 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,10 +1,4 @@ -# configuration these branches -branches: - only: - - master - - /dev.*/ - - /release.*/ - - /v.*/ +# configuration for all branches image: Visual Studio 2017 @@ -81,6 +75,11 @@ before_deploy: Push-AppveyorArtifact $env:APPVEYOR_BUILD_FOLDER\source\Nuget.nanoFramework.Runtime.Native\bin\Release\nanoFramework.Runtime.Native.$env:GitVersion_NuGetVersionV2.nupkg +after_deploy: +# for this environment variable to work here it has to be set in AppVeyor UI +- nuget push source\Nuget.nanoFramework.Runtime.Native\bin\Release\nanoFramework.Runtime.Native.%GitVersion_NuGetVersionV2%.nupkg %MyGetToken% -Source https://www.myget.org/F/nanoframework-dev/api/v2/package +- nuget push source\Nuget.nanoFramework.Runtime.Native.DELIVERABLES\bin\Release\nanoFramework.Runtime.Native.DELIVERABLES.%GitVersion_NuGetVersionV2%.nupkg %MyGetToken% -Source https://www.myget.org/F/nanoframework-dev/api/v2/package + # requires APPVEYOR_DISCORD_WEBHOOK_URL enviroment variable set with Discord webhook URL on_failure: - ps: | @@ -118,6 +117,8 @@ for: draft: true prerelease: false force_update: true + on: + appveyor_repo_tag: false - branches: @@ -135,11 +136,8 @@ for: draft: true prerelease: true force_update: true - - after_deploy: - # for this environment variable to work here it has to be set in AppVeyor UI - - nuget push source\Nuget.nanoFramework.Runtime.Native\bin\Release\nanoFramework.Runtime.Native.%GitVersion_NuGetVersionV2%.nupkg %MyGetToken% -Source https://www.myget.org/F/nanoframework-dev/api/v2/package - - nuget push source\Nuget.nanoFramework.Runtime.Native.DELIVERABLES\bin\Release\nanoFramework.Runtime.Native.DELIVERABLES.%GitVersion_NuGetVersionV2%.nupkg %MyGetToken% -Source https://www.myget.org/F/nanoframework-dev/api/v2/package + on: + appveyor_repo_tag: false - branches: @@ -162,3 +160,5 @@ for: draft: true prerelease: true force_update: true + on: + appveyor_repo_tag: false diff --git a/commit-assemblyinfo-changes.ps1 b/commit-assemblyinfo-changes.ps1 index bc6e4d1..b83fa51 100644 --- a/commit-assemblyinfo-changes.ps1 +++ b/commit-assemblyinfo-changes.ps1 @@ -1,7 +1,13 @@ -# only need to commit assembly info changes when build is NOT for a pull-request -if ($env:appveyor_pull_request_number) +# Copyright (c) 2018 The nanoFramework project contributors +# See LICENSE file in the project root for full license information. + +# skip updating assembly info changes if build is a pull-request or not a tag (master OR release) +if ($env:appveyor_pull_request_number -or + ($env:APPVEYOR_REPO_BRANCH -eq "master" -and $env:APPVEYOR_REPO_TAG -eq 'true') -or + ($env:APPVEYOR_REPO_BRANCH -match "^release*" -and $env:APPVEYOR_REPO_TAG -eq 'true') -or + $env:APPVEYOR_REPO_TAG -eq "true") { - 'Skip committing assembly info changes as this is a PR build...' | Write-Host -ForegroundColor White + 'Skip committing assembly info changes...' | Write-Host -ForegroundColor White } else { @@ -12,6 +18,12 @@ else 'Updated assembly info...' | Write-Host -ForegroundColor White -NoNewline 'OK' | Write-Host -ForegroundColor Green +} + +# update assembly info in nf-interpreter if we are in development branch or if this is tag (master OR release) +if ($env:APPVEYOR_REPO_BRANCH -match "^dev*" -or $env:APPVEYOR_REPO_TAG -eq "true") +{ + 'Updating assembly version in nf-interpreter...' | Write-Host -ForegroundColor White -NoNewline # clone nf-interpreter repo (only a shallow clone with last commit) git clone https://github.com/nanoframework/nf-interpreter -b develop --depth 1 -q @@ -51,7 +63,7 @@ else # commit changes git add -A 2>&1 - git commit -m"$commitMessage" -m"[version update]" -q + git commit -m"$commitMessage [skip ci]" -m"[version update]" -q git push --set-upstream origin "$newBranch" --porcelain -q > $null # start PR diff --git a/generate-change-log.ps1 b/generate-change-log.ps1 index 0211a72..a9d3395 100644 --- a/generate-change-log.ps1 +++ b/generate-change-log.ps1 @@ -1,20 +1,33 @@ -# generate change log when build is NOT for a pull-request -if ($env:appveyor_pull_request_number) +# Copyright (c) 2018 The nanoFramework project contributors +# See LICENSE file in the project root for full license information. + +# generate change log when build is NOT a pull-request or not a tag (master OR release) +if ($env:appveyor_pull_request_number -or + ($env:APPVEYOR_REPO_BRANCH -eq "master" -and $env:APPVEYOR_REPO_TAG -eq 'true') -or + ($env:APPVEYOR_REPO_BRANCH -match "^release*" -and $env:APPVEYOR_REPO_TAG -eq 'true') -or + $env:APPVEYOR_REPO_TAG -eq "true") { - 'Skip change log processing as this is a PR build...' | Write-Host -ForegroundColor White + 'Skip change log processing...' | Write-Host -ForegroundColor White } else { # need this to keep ruby happy md c:\tmp - # generate change log - # version includes commits - bundle exec github_changelog_generator --token $env:GitHubToken + if ($env:APPVEYOR_REPO_BRANCH -eq "master" -or $env:APPVEYOR_REPO_BRANCH -match "^release*") + { + # generate change log including future version + bundle exec github_changelog_generator --token $env:GitHubToken --future-release "v$env:GitVersion_MajorMinorPatch" + } + else + { + # generate change log + # version includes commits + bundle exec github_changelog_generator --token $env:GitHubToken + } # updated changelog and the updated assembly info files git add CHANGELOG.md git commit -m "Update CHANGELOG for v$env:GitVersion_NuGetVersionV2" - # need to wrap the git command bellow so it doesn't throw an error because of redirecting the output to stderr - git push origin --porcelain | Write-Host + git push origin --porcelain -q > $null } From b9bb6a9d73236dceae1a9f78b62a49f944875acf Mon Sep 17 00:00:00 2001 From: nfbot Date: Wed, 17 Oct 2018 17:14:32 +0100 Subject: [PATCH 05/14] Bumps nanoFramework.CoreLibrary from 1.0.1-preview134 to 1.0.4 (#30) Bumps nanoFramework.CoreLibrary from 1.0.1-preview134 to 1.0.4. --- .../Nuget.nanoFramework.Runtime.Native.DELIVERABLES.nuproj | 2 +- .../Nuget.nanoFramework.Runtime.Native.nuproj | 2 +- .../nanoFramework.Runtime.Native.nfproj | 6 +++--- source/nanoFramework.Runtime.Native/packages.config | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/source/Nuget.nanoFramework.Runtime.Native.DELIVERABLES/Nuget.nanoFramework.Runtime.Native.DELIVERABLES.nuproj b/source/Nuget.nanoFramework.Runtime.Native.DELIVERABLES/Nuget.nanoFramework.Runtime.Native.DELIVERABLES.nuproj index 837971d..9dab653 100644 --- a/source/Nuget.nanoFramework.Runtime.Native.DELIVERABLES/Nuget.nanoFramework.Runtime.Native.DELIVERABLES.nuproj +++ b/source/Nuget.nanoFramework.Runtime.Native.DELIVERABLES/Nuget.nanoFramework.Runtime.Native.DELIVERABLES.nuproj @@ -38,7 +38,7 @@ - [1.0.1-preview134] + [1.0.4] diff --git a/source/Nuget.nanoFramework.Runtime.Native/Nuget.nanoFramework.Runtime.Native.nuproj b/source/Nuget.nanoFramework.Runtime.Native/Nuget.nanoFramework.Runtime.Native.nuproj index fe3800c..4ba3e05 100644 --- a/source/Nuget.nanoFramework.Runtime.Native/Nuget.nanoFramework.Runtime.Native.nuproj +++ b/source/Nuget.nanoFramework.Runtime.Native/Nuget.nanoFramework.Runtime.Native.nuproj @@ -35,7 +35,7 @@ - [1.0.1-preview134] + [1.0.4] diff --git a/source/nanoFramework.Runtime.Native/nanoFramework.Runtime.Native.nfproj b/source/nanoFramework.Runtime.Native/nanoFramework.Runtime.Native.nfproj index 431c610..60c75a3 100644 --- a/source/nanoFramework.Runtime.Native/nanoFramework.Runtime.Native.nfproj +++ b/source/nanoFramework.Runtime.Native/nanoFramework.Runtime.Native.nfproj @@ -53,7 +53,7 @@ - + false @@ -72,8 +72,8 @@ - - ..\packages\nanoFramework.CoreLibrary.1.0.1-preview134\lib\mscorlib.dll + + ..\packages\nanoFramework.CoreLibrary.1.0.4\lib\mscorlib.dll True diff --git a/source/nanoFramework.Runtime.Native/packages.config b/source/nanoFramework.Runtime.Native/packages.config index 8a62756..192eaf4 100644 --- a/source/nanoFramework.Runtime.Native/packages.config +++ b/source/nanoFramework.Runtime.Native/packages.config @@ -1,6 +1,6 @@  - + \ No newline at end of file From d831e90a0bf83272187f3665ca2e821c58f43a5a Mon Sep 17 00:00:00 2001 From: nfbot Date: Wed, 17 Oct 2018 18:34:34 +0000 Subject: [PATCH 06/14] Update assembly info file for v1.0.0 [skip ci] [version update] --- source/nanoFramework.Runtime.Native/Properties/AssemblyInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/nanoFramework.Runtime.Native/Properties/AssemblyInfo.cs b/source/nanoFramework.Runtime.Native/Properties/AssemblyInfo.cs index 16c1f4b..6b35881 100644 --- a/source/nanoFramework.Runtime.Native/Properties/AssemblyInfo.cs +++ b/source/nanoFramework.Runtime.Native/Properties/AssemblyInfo.cs @@ -27,4 +27,4 @@ // [assembly: AssemblyVersion("1.0.0.0")] [assembly: AssemblyVersion("1.0.0.0")] [assembly: AssemblyFileVersion("1.0.0.0")] -[assembly: AssemblyInformationalVersion("1.0.0-preview224")] +[assembly: AssemblyInformationalVersion("1.0.0")] From 491685f4bda5b33fb95ed33763c95bc586251e96 Mon Sep 17 00:00:00 2001 From: nfbot Date: Wed, 17 Oct 2018 18:34:44 +0000 Subject: [PATCH 07/14] Update CHANGELOG for v1.0.0 --- CHANGELOG.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a5c42b..8586157 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,6 @@ # Change Log -## [**Changes available only in 'Preview' NuGet packages:**](https://github.com/nanoframework/lib-nanoFramework.Runtime.Native/tree/HEAD) - +## [v1.0.0](https://github.com/nanoframework/lib-nanoFramework.Runtime.Native/tree/v1.0.0) (2018-10-17) **Implemented enhancements:** - Update snk to match mscorlib [\#19](https://github.com/nanoframework/lib-nanoFramework.Runtime.Native/pull/19) @@ -21,6 +20,8 @@ **Documentation and other chores:** +- Merge 'develop' for Release 1.0.0 [\#31](https://github.com/nanoframework/lib-nanoFramework.Runtime.Native/pull/31) +- Bumps nanoFramework.CoreLibrary from 1.0.1-preview134 to 1.0.4 [\#30](https://github.com/nanoframework/lib-nanoFramework.Runtime.Native/pull/30) - Bumps nanoFramework.CoreLibrary from 1.0.1-preview127 to 1.0.1-preview134 [\#28](https://github.com/nanoframework/lib-nanoFramework.Runtime.Native/pull/28) - Bumps nanoFramework.CoreLibrary from 1.0.1-preview123 to 1.0.1-preview127 [\#26](https://github.com/nanoframework/lib-nanoFramework.Runtime.Native/pull/26) - Bumps nanoFramework.CoreLibrary from 1.0.1-preview118 to 1.0.1-preview123 [\#25](https://github.com/nanoframework/lib-nanoFramework.Runtime.Native/pull/25) From 59f1ddb0976c93e4e7336a646171e6f0c68f1fe0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Sim=C3=B5es?= Date: Fri, 14 Dec 2018 17:39:20 +0000 Subject: [PATCH 08/14] Bump version to 1.0.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: José Simões --- source/version.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/version.json b/source/version.json index 841296b..28ad316 100644 --- a/source/version.json +++ b/source/version.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json", - "version": "1.0.2-preview.{height}", + "version": "1.0.2", "assemblyVersion": { "precision": "revision" }, From 69e670ec52a6a5bb2e9a0b99a9bdaaed992a83e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Sim=C3=B5es?= Date: Mon, 21 Jan 2019 19:14:27 +0000 Subject: [PATCH 09/14] Update version.json --- source/version.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/version.json b/source/version.json index 0329f76..0219745 100644 --- a/source/version.json +++ b/source/version.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json", - "version": "1.0.3-preview.{height}", + "version": "1.0.4", "assemblyVersion": { "precision": "revision" }, @@ -16,4 +16,4 @@ "setVersionVariables": true, "setAllVariables": true } -} \ No newline at end of file +} From 871039b10a17e991d4dc1a63268a9303767efcdf Mon Sep 17 00:00:00 2001 From: nfbot Date: Mon, 21 Jan 2019 22:59:56 +0000 Subject: [PATCH 10/14] Update CHANGELOG for v1.0.4.3 ***NO_CI*** --- CHANGELOG.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 42c878d..6f5b3c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,18 +1,17 @@ # Change Log -## [**Changes available only in 'Preview' NuGet packages:**](https://github.com/nanoframework/lib-nanoFramework.Runtime.Native/tree/HEAD) - -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.Runtime.Native/compare/v1.0.2...HEAD) +## [v1.0.4](https://github.com/nanoframework/lib-nanoFramework.Runtime.Native/tree/v1.0.4) (2019-01-21) +[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.Runtime.Native/compare/v1.0.2...v1.0.4) **Documentation and other chores:** +- Release v1.0.4 [\#48](https://github.com/nanoframework/lib-nanoFramework.Runtime.Native/pull/48) - Bumps nanoFramework.CoreLibrary from 1.1.0 to 1.1.1 [\#47](https://github.com/nanoframework/lib-nanoFramework.Runtime.Native/pull/47) - Merge back from Release v1.0.2 [\#46](https://github.com/nanoframework/lib-nanoFramework.Runtime.Native/pull/46) ## [v1.0.2](https://github.com/nanoframework/lib-nanoFramework.Runtime.Native/tree/v1.0.2) (2018-12-14) [Full Changelog](https://github.com/nanoframework/lib-nanoFramework.Runtime.Native/compare/v1.0.2-preview-016...v1.0.2) -## [v1.0.0](https://github.com/nanoframework/lib-nanoFramework.Runtime.Native/tree/v1.0.0) (2018-10-17) **Documentation and other chores:** - Release v1.0.2 [\#45](https://github.com/nanoframework/lib-nanoFramework.Runtime.Native/pull/45) From 46805a0b743a6e772ea138b8ed7ef2287c7122ca Mon Sep 17 00:00:00 2001 From: nfbot Date: Wed, 16 Oct 2019 11:11:58 +0100 Subject: [PATCH 11/14] Bumps nanoFramework.CoreLibrary from 1.2.6 to 1.2.7 ***PUBLISH_RELEASE*** --- source/nanoFramework.Runtime.Native.DELIVERABLES.nuspec | 2 +- source/nanoFramework.Runtime.Native.nuspec | 2 +- .../nanoFramework.Runtime.Native.nfproj | 6 +++--- source/nanoFramework.Runtime.Native/packages.config | 2 +- source/version.json | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/source/nanoFramework.Runtime.Native.DELIVERABLES.nuspec b/source/nanoFramework.Runtime.Native.DELIVERABLES.nuspec index c5e925a..1acbc6b 100644 --- a/source/nanoFramework.Runtime.Native.DELIVERABLES.nuspec +++ b/source/nanoFramework.Runtime.Native.DELIVERABLES.nuspec @@ -18,7 +18,7 @@ - + diff --git a/source/nanoFramework.Runtime.Native.nuspec b/source/nanoFramework.Runtime.Native.nuspec index 5b5df22..9e34863 100644 --- a/source/nanoFramework.Runtime.Native.nuspec +++ b/source/nanoFramework.Runtime.Native.nuspec @@ -20,7 +20,7 @@ This package requires a target with nanoFramework.Runtime.Native v$nativeVersion nanoFramework.Runtime.Native assembly for nanoFramework C# projects nanoFramework C# csharp netmf netnf nanoFramework.Runtime.Native - + diff --git a/source/nanoFramework.Runtime.Native/nanoFramework.Runtime.Native.nfproj b/source/nanoFramework.Runtime.Native/nanoFramework.Runtime.Native.nfproj index 6b60f17..a1b0306 100644 --- a/source/nanoFramework.Runtime.Native/nanoFramework.Runtime.Native.nfproj +++ b/source/nanoFramework.Runtime.Native/nanoFramework.Runtime.Native.nfproj @@ -58,7 +58,7 @@ - + false @@ -77,8 +77,8 @@ - - ..\packages\nanoFramework.CoreLibrary.1.2.6\lib\mscorlib.dll + + ..\packages\nanoFramework.CoreLibrary.1.2.7\lib\mscorlib.dll True diff --git a/source/nanoFramework.Runtime.Native/packages.config b/source/nanoFramework.Runtime.Native/packages.config index 2f6fd2a..4828a51 100644 --- a/source/nanoFramework.Runtime.Native/packages.config +++ b/source/nanoFramework.Runtime.Native/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file diff --git a/source/version.json b/source/version.json index 04406ff..e41f527 100644 --- a/source/version.json +++ b/source/version.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json", - "version": "1.0.7", + "version": "1.0.8", "assemblyVersion": { "precision": "revision" }, From 2792c9a49ab01652eb21773d61605e2f3b1ac988 Mon Sep 17 00:00:00 2001 From: nfbot Date: Thu, 11 Jun 2020 23:42:29 +0000 Subject: [PATCH 12/14] Update CHANGELOG for v1.4.0.3 ***NO_CI*** --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index babf23a..0775f12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ # Changelog -## [**Changes available only in 'Preview' NuGet packages:**](https://github.com/nanoframework/lib-nanoFramework.Runtime.Native/tree/HEAD) +## [v1.4.0-preview.3](https://github.com/nanoframework/lib-nanoFramework.Runtime.Native/tree/v1.4.0-preview.3) (2020-06-11) -[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.Runtime.Native/compare/v1.4.0-preview.1...HEAD) +[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.Runtime.Native/compare/v1.4.0-preview.1...v1.4.0-preview.3) **Documentation and other chores:** From d4b5ddcb20f36b66f42a500a2de802476792b400 Mon Sep 17 00:00:00 2001 From: nfbot Date: Wed, 17 Jun 2020 08:17:54 +0000 Subject: [PATCH 13/14] Update CHANGELOG for v1.5.0.3 ***NO_CI*** --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0775f12..ca9e897 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [v1.4.0](https://github.com/nanoframework/lib-nanoFramework.Runtime.Native/tree/v1.4.0) (2020-06-11) + +[Full Changelog](https://github.com/nanoframework/lib-nanoFramework.Runtime.Native/compare/v1.4.0-preview.3...v1.4.0) + +**Documentation and other chores:** + +- Release release-v1.4.0 [\#89](https://github.com/nanoframework/lib-nanoFramework.Runtime.Native/pull/89) + ## [v1.4.0-preview.3](https://github.com/nanoframework/lib-nanoFramework.Runtime.Native/tree/v1.4.0-preview.3) (2020-06-11) [Full Changelog](https://github.com/nanoframework/lib-nanoFramework.Runtime.Native/compare/v1.4.0-preview.1...v1.4.0-preview.3) From 58d9b8366ee8e52291c3e3b7c58ae0a8df1ea40e Mon Sep 17 00:00:00 2001 From: nfbot Date: Fri, 3 Dec 2021 01:09:40 +0000 Subject: [PATCH 14/14] Update CHANGELOG for v1.5.2.3 ***NO_CI*** --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b9ca38c..041202e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ # Changelog -## [v1.4.0](https://github.com/nanoframework/lib-nanoFramework.Runtime.Native/tree/v1.4.0) (2020-06-11) +## [v1.5.2-preview.8](https://github.com/nanoframework/nanoFramework.Runtime.Native/tree/v1.5.2-preview.8) (2021-12-02) -[Full Changelog](https://github.com/nanoframework/nanoFramework.Runtime.Native/compare/v1.5.2-preview.6...HEAD) +[Full Changelog](https://github.com/nanoframework/nanoFramework.Runtime.Native/compare/v1.5.2-preview.6...v1.5.2-preview.8) **Documentation and other chores:**