Skip to content

Commit

Permalink
release 2.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pofider committed Jul 22, 2020
1 parent e69ba2c commit bfcf9d8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion jsreport.Binary.OSX/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.7.1/jsreport-osx.tar.gz','jsreport-osx.tar.gz')
(new-object System.Net.WebClient).DownloadFile('https://github.com/jsreport/jsreport/releases/download/2.9.0/jsreport-osx.tar.gz','jsreport-osx.tar.gz')
& cmd.exe '/C 7z x "jsreport-osx.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.OSX/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.7.1/jsreport-osx.tar.gz
wget https://github.com/jsreport/jsreport/releases/download/2.9.0/jsreport-osx.tar.gz
tar -xzf jsreport-osx.tar.gz
mv jsreport jsreport.exe
zip jsreport-new.zip ./jsreport.exe
Expand Down
8 changes: 4 additions & 4 deletions jsreport.Binary.OSX/jsreport.Binary.OSX.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>2.7.1</Version>
<Version>2.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 OSX. 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.7.1.0</AssemblyVersion>
<FileVersion>2.7.1.0</FileVersion>
<AssemblyVersion>2.9.0.0</AssemblyVersion>
<FileVersion>2.9.0.0</FileVersion>
<PackageId>jsreport.Binary.OSX</PackageId>
</PropertyGroup>

Expand All @@ -36,7 +36,7 @@
</When>
<Otherwise>
<ItemGroup>
<PackageReference Include="jsreport.Shared" Version="2.1.0" />
<PackageReference Include="jsreport.Shared" Version="2.2.0" />
</ItemGroup>
</Otherwise>
</Choose>
Expand Down

0 comments on commit bfcf9d8

Please sign in to comment.