Skip to content

Commit

Permalink
Release: prepare v1.7.9
Browse files Browse the repository at this point in the history
  • Loading branch information
ForNeVeR committed Dec 4, 2021
1 parent 80331c9 commit b3697e4
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ test_script:
- pwsh: |
if ($isLinux) {
./linux/copy-artifacts.ps1
./common/nuget-pack.ps1 -Version "1.7.0.$env:APPVEYOR_BUILD_NUMBER" -UseMono -NuGet "$env:APPVEYOR_BUILD_FOLDER/tools/nuget.exe"
./common/nuget-pack.ps1 -Version "1.7.9.$env:APPVEYOR_BUILD_NUMBER" -UseMono -NuGet "$env:APPVEYOR_BUILD_FOLDER/tools/nuget.exe"
./common/test.ps1 -UseMono -NuGet "$env:APPVEYOR_BUILD_FOLDER/tools/nuget.exe"
} else {
./windows/copy-artifacts.ps1
./common/nuget-pack.ps1 -Version "1.7.0.$env:APPVEYOR_BUILD_NUMBER"
./common/nuget-pack.ps1 -Version "1.7.9.$env:APPVEYOR_BUILD_NUMBER"
./common/test.ps1
}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_CLI_TELEMETRY_OPTOUT: 1
NUGET_PACKAGES: ${{ github.workspace }}/.github/nuget-packages
PACKAGE_VERSION_BASE: 1.7.0
PACKAGE_VERSION_BASE: 1.7.9
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion common/download-release.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
param (
[string] $Version = '1.7.0',
[string] $Version = '1.7.9',
[string] $Tag = "v$Version",
[string] $BaseAddress = "https://github.com/ForNeVeR/tdlib.native/releases/download/$Tag",
[string] $BuildDirectory = "$PSScriptRoot/../build"
Expand Down
2 changes: 1 addition & 1 deletion common/nuget-pack.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
param (
[string] $Version = '1.7.0',
[string] $Version = '1.7.9',
[string] $SrcDirectory = "$PSScriptRoot/..",
[string] $BuildDirectory = "$SrcDirectory/build",

Expand Down
2 changes: 1 addition & 1 deletion tdlib.native.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<projectUrl>https://github.com/ForNeVeR/tdlib.native</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>NuGet packaging for tdlib: Telegram client library.</description>
<releaseNotes>Update TDLib to v1.7.0.</releaseNotes>
<releaseNotes>Update TDLib to the latest commit of v1.7.9. This is required to resolve the issue https://github.com/tdlib/td/issues/1758</releaseNotes>
<copyright>Copyright 2021</copyright>
<tags>telegram</tags>
</metadata>
Expand Down

0 comments on commit b3697e4

Please sign in to comment.