Skip to content

Commit be5e57f

Browse files
committed
[RELEASE] pdfHTML 4.0.1
1 parent 38a59e1 commit be5e57f

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ DOXYFILE_ENCODING = UTF-8
3232
# title of most generated pages and in a few other places.
3333
# The default value is: My Project.
3434

35-
PROJECT_NAME = "pdfHTML VERSION_PLACEHOLDER API"
35+
PROJECT_NAME = "pdfHTML 4.0.1 API"
3636

3737
# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
3838
# could be handy for archiving the generated documentation or if some version

itext.tests/itext.html2pdf.tests/Properties/AssemblyInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
[assembly: AssemblyVersion("4.0.1.0")]
1919
[assembly: AssemblyFileVersion("4.0.1.0")]
20-
[assembly: AssemblyInformationalVersion("4.0.1-SNAPSHOT")]
20+
[assembly: AssemblyInformationalVersion("4.0.1")]
2121

2222
#if !NETSTANDARD2_0
2323
[assembly: NUnit.Framework.Timeout(300000)]

itext.tests/itext.html2pdf.tests/itext.html2pdf.tests.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
1+
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
22
<PropertyGroup Label="Configuration">
33
<SignAssembly>True</SignAssembly>
44
<DelaySign>False</DelaySign>
@@ -45,15 +45,15 @@
4545
</ItemGroup>
4646
<ItemGroup>
4747
<ProjectReference Include="..\..\..\itextcore\itext\itext.io\itext.io.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.io\itext.io.netstandard.csproj')" />
48-
<PackageReference Include="itext7" Version="7.2.1-SNAPSHOT" Condition="!Exists('..\..\..\itextcore\itext\itext.io\itext.io.netstandard.csproj')" />
48+
<PackageReference Include="itext7" Version="7.2.1" Condition="!Exists('..\..\..\itextcore\itext\itext.io\itext.io.netstandard.csproj')" />
4949
<ProjectReference Include="..\..\..\itextcore\itext\itext.kernel\itext.kernel.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.kernel\itext.kernel.netstandard.csproj')" />
5050
<ProjectReference Include="..\..\..\itextcore\itext\itext.layout\itext.layout.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.layout\itext.layout.netstandard.csproj')" />
5151
<ProjectReference Include="..\..\..\itextcore\itext\itext.forms\itext.forms.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.forms\itext.forms.netstandard.csproj')" />
5252
<ProjectReference Include="..\..\..\itextcore\itext\itext.pdfa\itext.pdfa.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.pdfa\itext.pdfa.netstandard.csproj')" />
5353
<ProjectReference Include="..\..\..\itextcore\itext\itext.hyph\itext.hyph.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.hyph\itext.hyph.netstandard.csproj')" />
54-
<PackageReference Include="itext7.hyph" Version="7.2.1-SNAPSHOT" Condition="!Exists('..\..\..\itextcore\itext\itext.hyph\itext.hyph.netstandard.csproj')" />
54+
<PackageReference Include="itext7.hyph" Version="7.2.1" Condition="!Exists('..\..\..\itextcore\itext\itext.hyph\itext.hyph.netstandard.csproj')" />
5555
<ProjectReference Include="..\..\..\itextcore\itext\itext.pdftest\itext.pdftest.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.pdftest\itext.pdftest.netstandard.csproj')" />
56-
<PackageReference Include="itext7.pdftest" Version="7.2.1-SNAPSHOT" Condition="!Exists('..\..\..\itextcore\itext\itext.pdftest\itext.pdftest.netstandard.csproj')" />
56+
<PackageReference Include="itext7.pdftest" Version="7.2.1" Condition="!Exists('..\..\..\itextcore\itext\itext.pdftest\itext.pdftest.netstandard.csproj')" />
5757
<ProjectReference Include="..\..\..\itextcore\itext\itext.styledxmlparser\itext.styledxmlparser.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.styledxmlparser\itext.styledxmlparser.netstandard.csproj')" />
5858
<ProjectReference Include="..\..\..\itextcore\itext\itext.svg\itext.svg.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.svg\itext.svg.netstandard.csproj')" />
5959
<ProjectReference Include="..\..\itext\itext.html2pdf\itext.html2pdf.csproj" />

itext/itext.html2pdf/Properties/AssemblyInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@
3030

3131
[assembly: AssemblyVersion("4.0.1.0")]
3232
[assembly: AssemblyFileVersion("4.0.1.0")]
33-
[assembly: AssemblyInformationalVersion("4.0.1-SNAPSHOT")]
33+
[assembly: AssemblyInformationalVersion("4.0.1")]

itext/itext.html2pdf/itext.html2pdf.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
1+
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
22
<PropertyGroup Label="Configuration">
33
<SignAssembly>True</SignAssembly>
44
<DelaySign>False</DelaySign>
@@ -31,7 +31,7 @@
3131
</ItemGroup>
3232
<ItemGroup>
3333
<ProjectReference Include="..\..\..\itextcore\itext\itext.io\itext.io.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.io\itext.io.netstandard.csproj')" />
34-
<PackageReference Include="itext7" Version="7.2.1-SNAPSHOT" Condition="!Exists('..\..\..\itextcore\itext\itext.io\itext.io.netstandard.csproj')" />
34+
<PackageReference Include="itext7" Version="7.2.1" Condition="!Exists('..\..\..\itextcore\itext\itext.io\itext.io.netstandard.csproj')" />
3535
<ProjectReference Include="..\..\..\itextcore\itext\itext.kernel\itext.kernel.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.kernel\itext.kernel.netstandard.csproj')" />
3636
<ProjectReference Include="..\..\..\itextcore\itext\itext.layout\itext.layout.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.layout\itext.layout.netstandard.csproj')" />
3737
<ProjectReference Include="..\..\..\itextcore\itext\itext.forms\itext.forms.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.forms\itext.forms.netstandard.csproj')" />

itext/itext.html2pdf/itext/html2pdf/actions/data/PdfHtmlProductData.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ namespace iText.Html2pdf.Actions.Data {
3333
public sealed class PdfHtmlProductData {
3434
private const String PDF_HTML_PUBLIC_PRODUCT_NAME = "pdfHTML";
3535

36-
private const String PDF_HTML_VERSION = "4.0.1-SNAPSHOT";
36+
private const String PDF_HTML_VERSION = "4.0.1";
3737

3838
private const int PDF_HTML_COPYRIGHT_SINCE = 2000;
3939

pdfHTML.nuspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
33
<metadata>
44
<id>itext7.pdfhtml</id>
5-
<version>4.0.1-SNAPSHOT</version>
5+
<version>4.0.1</version>
66
<title>iText 7 pdfHTML</title>
77
<authors>iText Software</authors>
88
<owners>iText Software</owners>
@@ -19,10 +19,10 @@
1919
<repository type="git" url="https://github.com/itext/i7n-pdfhtml.git" />
2020
<dependencies>
2121
<group targetFramework="net461">
22-
<dependency id="itext7" version="7.2.1-SNAPSHOT" />
22+
<dependency id="itext7" version="7.2.1" />
2323
</group>
2424
<group targetFramework="netstandard2.0">
25-
<dependency id="itext7" version="7.2.1-SNAPSHOT" />
25+
<dependency id="itext7" version="7.2.1" />
2626
</group>
2727
</dependencies>
2828
</metadata>

port-hash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9a754aeaaaa4f8601d99b2f39992dd17416583d0
1+
6d6fedaaf00a1438842cccfa8066d84f6d24437b

0 commit comments

Comments
 (0)