Skip to content

Commit

Permalink
release 3.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pofider committed Nov 23, 2022
1 parent 49d45e5 commit b106698
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion jsreport.Binary.Linux/download.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
(new-object System.Net.WebClient).DownloadFile('https://github.com/jsreport/jsreport/releases/download/3.8.0/jsreport-linux.tar.gz','jsreport-linux.tar.gz')
(new-object System.Net.WebClient).DownloadFile('https://github.com/jsreport/jsreport/releases/download/3.9.0/jsreport-linux.tar.gz','jsreport-linux.tar.gz')
& cmd.exe '/C 7z x "jsreport-linux.tar.gz" -so | 7z x -aoa -si -ttar'
ren jsreport jsreport.exe
Compress-Archive -LiteralPath jsreport.exe -CompressionLevel Optimal -DestinationPath jsreport.zip -Force
Expand Down
2 changes: 1 addition & 1 deletion jsreport.Binary.Linux/download.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#download the binary from github and zip it as expected by c#
wget https://github.com/jsreport/jsreport/releases/download/3.8.0/jsreport-linux.tar.gz
wget https://github.com/jsreport/jsreport/releases/download/3.9.0/jsreport-linux.tar.gz
tar -xzf jsreport-linux.tar.gz
mv jsreport jsreport.exe
zip jsreport-new.zip ./jsreport.exe
Expand Down
6 changes: 3 additions & 3 deletions jsreport.Binary.Linux/jsreport.Binary.Linux.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<Version>3.8.0</Version>
<Version>3.9.0</Version>
<Authors>Jan Blaha</Authors>
<Company>jsreport</Company>
<Product>jsreport</Product>
Expand All @@ -15,8 +15,8 @@
<Description>The package includes jsreport compiled into single binary for linux. You gonna need also jsreport.Local which wraps it with c# API.</Description>
<PackageReleaseNotes>Release notes are at https://github.com/jsreport/jsreport/releases</PackageReleaseNotes>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AssemblyVersion>3.8.0.0</AssemblyVersion>
<FileVersion>3.8.0.0</FileVersion>
<AssemblyVersion>3.9.0.0</AssemblyVersion>
<FileVersion>3.9.0.0</FileVersion>
<PackageId>jsreport.Binary.Linux</PackageId>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
Expand Down

0 comments on commit b106698

Please sign in to comment.