Skip to content

Commit

Permalink
release 2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pofider committed Jun 7, 2019
1 parent 179a4e0 commit 2f6ecf6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 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/2.4.0/jsreport-linux.tar.gz','jsreport-linux.tar.gz')
(new-object System.Net.WebClient).DownloadFile('https://github.com/jsreport/jsreport/releases/download/2.5.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/2.4.0/jsreport-linux.tar.gz
wget https://github.com/jsreport/jsreport/releases/download/2.5.0/jsreport-linux.tar.gz
tar -xzf jsreport-linux.tar.gz
mv jsreport jsreport.exe
zip jsreport-new.zip ./jsreport.exe
Expand Down
8 changes: 4 additions & 4 deletions jsreport.Binary.Linux/jsreport.Binary.Linux.csproj
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
<Version>2.4.0</Version>
<Version>2.5.0</Version>
<Authors>Jan Blaha</Authors>
<Company>jsreport</Company>
<Product>jsreport</Product>
<Copyright>Copyright 2013-2017 Jan Blaha</Copyright>
<Copyright>Copyright 2013-2019 Jan Blaha</Copyright>
<PackageLicenseUrl>http://www.opensource.org/licenses/mit-license.php</PackageLicenseUrl>
<PackageProjectUrl>https://jsreport.net</PackageProjectUrl>
<PackageIconUrl>http://jsreport.net/img/favicon.ico</PackageIconUrl>
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>2.4.0.0</AssemblyVersion>
<FileVersion>2.4.0.0</FileVersion>
<AssemblyVersion>2.5.0.0</AssemblyVersion>
<FileVersion>2.5.0.0</FileVersion>
<PackageId>jsreport.Binary.Linux</PackageId>
</PropertyGroup>

Expand Down

0 comments on commit 2f6ecf6

Please sign in to comment.