From 52792d54f48fe97000e72877e7e75b0665cdf064 Mon Sep 17 00:00:00 2001 From: Angelina Pavlovets Date: Fri, 11 Oct 2024 07:27:53 +0000 Subject: [PATCH 1/2] Make 'floatMultiplier' in ClipperBridge non-static configuration DEVSIX-5770 DEVSIX-1279 Autoported commit. Original commit hash: [1bb85b3f2] --- .../canvas/parser/PdfContentExtractionTest.cs | 34 +++- .../parser/clipperlib/ClipperBridgeTest.cs | 32 +++- .../pdf/canvas/parser/ParserGraphicsState.cs | 10 +- .../canvas/parser/clipperlib/ClipperBridge.cs | 157 +++++++++++++++--- port-hash | 2 +- 5 files changed, 192 insertions(+), 43 deletions(-) diff --git a/itext.tests/itext.kernel.tests/itext/kernel/pdf/canvas/parser/PdfContentExtractionTest.cs b/itext.tests/itext.kernel.tests/itext/kernel/pdf/canvas/parser/PdfContentExtractionTest.cs index 2cbb139509..40f98d54f7 100644 --- a/itext.tests/itext.kernel.tests/itext/kernel/pdf/canvas/parser/PdfContentExtractionTest.cs +++ b/itext.tests/itext.kernel.tests/itext/kernel/pdf/canvas/parser/PdfContentExtractionTest.cs @@ -29,22 +29,38 @@ You should have received a copy of the GNU Affero General Public License namespace iText.Kernel.Pdf.Canvas.Parser { [NUnit.Framework.Category("IntegrationTest")] public class PdfContentExtractionTest : ExtendedITextTest { - private static readonly String sourceFolder = iText.Test.TestUtil.GetParentProjectDirectory(NUnit.Framework.TestContext + private static readonly String SOURCE_FOLDER = iText.Test.TestUtil.GetParentProjectDirectory(NUnit.Framework.TestContext .CurrentContext.TestDirectory) + "/resources/itext/kernel/parser/PdfContentExtractionTest/"; [NUnit.Framework.Test] public virtual void ContentExtractionInDocWithBigCoordinatesTest() { - //TODO: remove the expected exception construct once the issue is fixed (DEVSIX-1279) - String inputFileName = sourceFolder + "docWithBigCoordinates.pdf"; - //In this document the CTM shrinks coordinates and this coordinates are large numbers. + String inputFileName = SOURCE_FOLDER + "docWithBigCoordinates.pdf"; + // In this document the CTM shrinks coordinates and these coordinates are large numbers. // At the moment creation of this test clipper has a problem with handling large numbers // since internally it deals with integers and has to multiply large numbers even more // for internal purposes - PdfDocument pdfDocument = new PdfDocument(new PdfReader(inputFileName)); - PdfDocumentContentParser contentParser = new PdfDocumentContentParser(pdfDocument); - Exception e = NUnit.Framework.Assert.Catch(typeof(ClipperException), () => contentParser.ProcessContent(1, - new LocationTextExtractionStrategy())); - NUnit.Framework.Assert.AreEqual(ClipperExceptionConstant.COORDINATE_OUTSIDE_ALLOWED_RANGE, e.Message); + using (PdfDocument pdfDocument = new PdfDocument(new PdfReader(inputFileName))) { + PdfDocumentContentParser contentParser = new PdfDocumentContentParser(pdfDocument); + NUnit.Framework.Assert.DoesNotThrow(() => contentParser.ProcessContent(1, new LocationTextExtractionStrategy + ())); + } + } + + [NUnit.Framework.Test] + public virtual void ContentExtractionInDocWithStaticFloatMultiplierTest() { + String inputFileName = SOURCE_FOLDER + "docWithBigCoordinates.pdf"; + // In this document the CTM shrinks coordinates and these coordinates are large numbers. + // At the moment creation of this test clipper has a problem with handling large numbers + // since internally it deals with integers and has to multiply large numbers even more + // for internal purposes + using (PdfDocument pdfDocument = new PdfDocument(new PdfReader(inputFileName))) { + PdfDocumentContentParser contentParser = new PdfDocumentContentParser(pdfDocument); + ClipperBridge.floatMultiplier = Math.Pow(10, 14); + Exception e = NUnit.Framework.Assert.Catch(typeof(ClipperException), () => contentParser.ProcessContent(1, + new LocationTextExtractionStrategy())); + NUnit.Framework.Assert.AreEqual(ClipperExceptionConstant.COORDINATE_OUTSIDE_ALLOWED_RANGE, e.Message); + ClipperBridge.floatMultiplier = null; + } } } } diff --git a/itext.tests/itext.kernel.tests/itext/kernel/pdf/canvas/parser/clipperlib/ClipperBridgeTest.cs b/itext.tests/itext.kernel.tests/itext/kernel/pdf/canvas/parser/clipperlib/ClipperBridgeTest.cs index 1791781011..7659abeca4 100644 --- a/itext.tests/itext.kernel.tests/itext/kernel/pdf/canvas/parser/clipperlib/ClipperBridgeTest.cs +++ b/itext.tests/itext.kernel.tests/itext/kernel/pdf/canvas/parser/clipperlib/ClipperBridgeTest.cs @@ -22,6 +22,7 @@ You should have received a copy of the GNU Affero General Public License */ using System.Collections.Generic; using System.Linq; +using iText.Commons.Utils; using iText.Kernel.Geom; using iText.Kernel.Pdf.Canvas; using iText.Test; @@ -48,11 +49,12 @@ public virtual void SquareClippingTest() { Path rectanglePath = new Path(); rectanglePath.AddSubpath(rectangleSubpath); Clipper clipper = new Clipper(); - ClipperBridge.AddPath(clipper, squarePath, PolyType.SUBJECT); - ClipperBridge.AddPath(clipper, rectanglePath, PolyType.CLIP); + ClipperBridge clipperBridge = new ClipperBridge(squarePath, rectanglePath); + clipperBridge.AddPath(clipper, squarePath, PolyType.SUBJECT); + clipperBridge.AddPath(clipper, rectanglePath, PolyType.CLIP); PolyTree polyTree = new PolyTree(); clipper.Execute(ClipType.UNION, polyTree); - Path result = ClipperBridge.ConvertToPath(polyTree); + Path result = clipperBridge.ConvertToPath(polyTree); NUnit.Framework.Assert.AreEqual(new Point(20, 40), result.GetCurrentPoint()); NUnit.Framework.Assert.AreEqual(2, result.GetSubpaths().Count); Subpath closedPath = result.GetSubpaths()[0]; @@ -95,14 +97,34 @@ public virtual void GetEndTypeTest() { public virtual void LongRectWidthTest() { IntRect longRect = new IntRect(14900000000000000L, 21275000000000000L, 71065802001953128L, 71075000000000000L ); - NUnit.Framework.Assert.AreEqual(561.658, ClipperBridge.LongRectCalculateWidth(longRect), 0.001f); + NUnit.Framework.Assert.AreEqual(561.658, new ClipperBridge().LongRectCalculateWidth(longRect), 0.001f); } [NUnit.Framework.Test] public virtual void LongRectHeightTest() { IntRect longRect = new IntRect(14900000000000000L, 21275000000000000L, 71065802001953128L, 71075000000000000L ); - NUnit.Framework.Assert.AreEqual(498, ClipperBridge.LongRectCalculateHeight(longRect), 0.001f); + NUnit.Framework.Assert.AreEqual(498, new ClipperBridge().LongRectCalculateHeight(longRect), 0.001f); + } + + [NUnit.Framework.Test] + public virtual void DynamicFloatMultiplierCalculationsSmallValuesTest() { + Point[] points = new Point[] { new Point(1e-10, 0), new Point(0, 1e-13) }; + NUnit.Framework.Assert.AreEqual(1.8014398509481984e26, new ClipperBridge(points).GetFloatMultiplier(), 0e+10 + ); + } + + [NUnit.Framework.Test] + public virtual void DynamicFloatMultiplierCalculationsBigValuesTest() { + Point[] points = new Point[] { new Point(1e+11, 10), new Point(10, 1e+10) }; + NUnit.Framework.Assert.AreEqual(180143, new ClipperBridge(points).GetFloatMultiplier(), 0.001f); + } + + [NUnit.Framework.Test] + public virtual void SmallFloatMultiplierCoefficientTest() { + Point[] points = new Point[] { new Point(1e-10, 1e+10) }; + NUnit.Framework.Assert.AreEqual(new IntPoint(0, 18014390000000000L), new ClipperBridge(points).ConvertToLongPoints + (JavaUtil.ArraysAsList(points))[0]); } private bool AreShapesEqual(IShape expected, IShape actual) { diff --git a/itext/itext.kernel/itext/kernel/pdf/canvas/parser/ParserGraphicsState.cs b/itext/itext.kernel/itext/kernel/pdf/canvas/parser/ParserGraphicsState.cs index f5fa2a54e1..506c22c1ab 100644 --- a/itext/itext.kernel/itext/kernel/pdf/canvas/parser/ParserGraphicsState.cs +++ b/itext/itext.kernel/itext/kernel/pdf/canvas/parser/ParserGraphicsState.cs @@ -62,6 +62,7 @@ public override void UpdateCtm(Matrix newCtm) { /// Intersects the current clipping path with the given path. /// /// Intersects the current clipping path with the given path. + /// /// Note: Coordinates of the given path should be in /// the transformed user space. /// @@ -80,17 +81,19 @@ public virtual void Clip(Path path, int fillingRule) { Path pathCopy = new Path(path); pathCopy.CloseAllSubpaths(); Clipper clipper = new Clipper(); - ClipperBridge.AddPath(clipper, clippingPath, PolyType.SUBJECT); - ClipperBridge.AddPath(clipper, pathCopy, PolyType.CLIP); + ClipperBridge clipperBridge = new ClipperBridge(clippingPath, pathCopy); + clipperBridge.AddPath(clipper, clippingPath, PolyType.SUBJECT); + clipperBridge.AddPath(clipper, pathCopy, PolyType.CLIP); PolyTree resultTree = new PolyTree(); clipper.Execute(ClipType.INTERSECTION, resultTree, PolyFillType.NON_ZERO, ClipperBridge.GetFillType(fillingRule )); - clippingPath = ClipperBridge.ConvertToPath(resultTree); + clippingPath = clipperBridge.ConvertToPath(resultTree); } /// Getter for the current clipping path. /// /// Getter for the current clipping path. + /// /// Note: The returned clipping path is in the transformed user space, so /// if you want to get it in default user space, apply transformation matrix ( /// @@ -104,6 +107,7 @@ public virtual Path GetClippingPath() { /// Sets the current clipping path to the specified path. /// /// Sets the current clipping path to the specified path. + /// /// Note:This method doesn't modify existing clipping path, /// it simply replaces it with the new one instead. /// diff --git a/itext/itext.kernel/itext/kernel/pdf/canvas/parser/clipperlib/ClipperBridge.cs b/itext/itext.kernel/itext/kernel/pdf/canvas/parser/clipperlib/ClipperBridge.cs index 822f43841d..54a4d5d66b 100644 --- a/itext/itext.kernel/itext/kernel/pdf/canvas/parser/clipperlib/ClipperBridge.cs +++ b/itext/itext.kernel/itext/kernel/pdf/canvas/parser/clipperlib/ClipperBridge.cs @@ -28,12 +28,12 @@ You should have received a copy of the GNU Affero General Public License namespace iText.Kernel.Pdf.Canvas.Parser.ClipperLib { /// - /// This class contains variety of methods allowing to convert iText - /// abstractions into the abstractions of the Clipper library and vise versa. + /// This class contains a variety of methods allowing the conversion of iText + /// abstractions into abstractions of the Clipper library, and vice versa. /// /// - /// This class contains variety of methods allowing to convert iText - /// abstractions into the abstractions of the Clipper library and vise versa. + /// This class contains a variety of methods allowing the conversion of iText + /// abstractions into abstractions of the Clipper library, and vice versa. /// /// For example: /// @@ -55,6 +55,8 @@ namespace iText.Kernel.Pdf.Canvas.Parser.ClipperLib { /// /// public sealed class ClipperBridge { + private const long MAX_ALLOWED_VALUE = 0x3FFFFFFFFFFFFFL; + /// /// Since the clipper library uses integer coordinates, we should convert /// our floating point numbers into fixed point numbers by multiplying by @@ -64,15 +66,97 @@ public sealed class ClipperBridge { /// Since the clipper library uses integer coordinates, we should convert /// our floating point numbers into fixed point numbers by multiplying by /// this coefficient. Vary it to adjust the preciseness of the calculations. + /// + /// Note that if this value is specified, it will be used for all ClipperBridge instances and + /// dynamic float multiplier calculation will be disabled. + /// + public static double? floatMultiplier; + + private double approximatedFloatMultiplier = Math.Pow(10, 14); + + /// + /// Creates new + /// + /// instance with default float multiplier value which is 10^14. + /// + /// + /// Creates new + /// + /// instance with default float multiplier value which is 10^14. + /// + /// Since the clipper library uses integer coordinates, we should convert our floating point numbers into fixed + /// point numbers by multiplying by float multiplier coefficient. It is possible to vary it to adjust the preciseness + /// of the calculations: if static + /// + /// is specified, it will be used for all ClipperBridge + /// instances and default value will be ignored. /// - public static double floatMultiplier = Math - //TODO DEVSIX-5770 make this constant a single non-static configuration - .Pow(10, 14); + public ClipperBridge() { + } + + // Empty constructor. + /// + /// Creates new + /// + /// instance with adjusted float multiplier value. + /// + /// + /// Creates new + /// + /// instance with adjusted float multiplier value. This instance will work + /// correctly with the provided paths only. + /// + /// Since the clipper library uses integer coordinates, we should convert our floating point numbers into fixed + /// point numbers by multiplying by float multiplier coefficient. It is calculated automatically, however + /// it is possible to vary it to adjust the preciseness of the calculations: if static + /// + /// is + /// specified, it will be used for all ClipperBridge instances and automatic calculation won't work. + /// + /// paths to calculate multiplier coefficient to convert floating point numbers into fixed point numbers + /// + public ClipperBridge(params Path[] paths) { + if (floatMultiplier == null) { + IList pointsList = new List(); + foreach (Path path in paths) { + foreach (Subpath subpath in path.GetSubpaths()) { + if (!subpath.IsSinglePointClosed() && !subpath.IsSinglePointOpen()) { + pointsList.AddAll(subpath.GetPiecewiseLinearApproximation()); + } + } + } + CalculateFloatMultiplier(pointsList.ToArray(new Point[0])); + } + } - private ClipperBridge() { + /// + /// Creates new + /// + /// instance with adjusted float multiplier value. + /// + /// + /// Creates new + /// + /// instance with adjusted float multiplier value. This instance will work + /// correctly with the provided point only. + /// + /// Since the clipper library uses integer coordinates, we should convert our floating point numbers into fixed + /// point numbers by multiplying by float multiplier coefficient. It is calculated automatically, however + /// it is possible to vary it to adjust the preciseness of the calculations: if static + /// + /// is + /// specified, it will be used for all ClipperBridge instances and automatic calculation won't work. + /// + /// + /// points to calculate multiplier coefficient to convert floating point numbers + /// into fixed point numbers + /// + public ClipperBridge(params Point[][] points) { + if (floatMultiplier == null) { + CalculateFloatMultiplier(points); + } } - //empty constructor /// /// Converts Clipper library /// @@ -90,7 +174,7 @@ private ClipperBridge() { /// /// object /// - public static Path ConvertToPath(PolyTree result) { + public Path ConvertToPath(PolyTree result) { Path path = new Path(); PolyNode node = result.GetFirst(); while (node != null) { @@ -122,7 +206,7 @@ public static Path ConvertToPath(PolyTree result) { /// See /// . /// - public static void AddPath(Clipper clipper, Path path, PolyType polyType) { + public void AddPath(Clipper clipper, Path path, PolyType polyType) { foreach (Subpath subpath in path.GetSubpaths()) { if (!subpath.IsSinglePointClosed() && !subpath.IsSinglePointOpen()) { IList linearApproxPoints = subpath.GetPiecewiseLinearApproximation(); @@ -186,7 +270,7 @@ public static void AddPath(Clipper clipper, Path path, PolyType polyType) { /// /// s of the path. /// - public static IList AddPath(ClipperOffset offset, Path path, JoinType joinType, EndType endType) { + public IList AddPath(ClipperOffset offset, Path path, JoinType joinType, EndType endType) { IList degenerateSubpaths = new List(); foreach (Subpath subpath in path.GetSubpaths()) { if (subpath.IsDegenerate()) { @@ -226,10 +310,10 @@ public static IList AddPath(ClipperOffset offset, Path path, JoinType j /// /// objects. /// - public static IList ConvertToFloatPoints(IList points) { + public IList ConvertToFloatPoints(IList points) { IList convertedPoints = new List(points.Count); foreach (IntPoint point in points) { - convertedPoints.Add(new Point(point.X / floatMultiplier, point.Y / floatMultiplier)); + convertedPoints.Add(new Point(point.X / GetFloatMultiplier(), point.Y / GetFloatMultiplier())); } return convertedPoints; } @@ -251,10 +335,11 @@ public static IList ConvertToFloatPoints(IList points) { /// /// objects. /// - public static IList ConvertToLongPoints(IList points) { + public IList ConvertToLongPoints(IList points) { IList convertedPoints = new List(points.Count); foreach (Point point in points) { - convertedPoints.Add(new IntPoint(floatMultiplier * point.GetX(), floatMultiplier * point.GetY())); + convertedPoints.Add(new IntPoint(GetFloatMultiplier() * point.GetX(), GetFloatMultiplier() * point.GetY()) + ); } return convertedPoints; } @@ -372,7 +457,7 @@ public static PolyFillType GetFillType(int fillingRule) { /// path is a subject of clipping or a part of the clipping polygon. /// /// true if polygon path was successfully added, false otherwise. - public static bool AddPolygonToClipper(Clipper clipper, Point[] polyVertices, PolyType polyType) { + public bool AddPolygonToClipper(Clipper clipper, Point[] polyVertices, PolyType polyType) { return clipper.AddPath(new List(ConvertToLongPoints(new List(JavaUtil.ArraysAsList(polyVertices )))), polyType, true); } @@ -418,7 +503,7 @@ public static bool AddPolygonToClipper(Clipper clipper, Point[] polyVertices, Po /// to clipper path and added to the clipper instance. /// /// true if polyline path was successfully added, false otherwise. - public static bool AddPolylineSubjectToClipper(Clipper clipper, Point[] lineVertices) { + public bool AddPolylineSubjectToClipper(Clipper clipper, Point[] lineVertices) { return clipper.AddPath(new List(ConvertToLongPoints(new List(JavaUtil.ArraysAsList(lineVertices )))), PolyType.SUBJECT, false); } @@ -434,9 +519,8 @@ public static bool AddPolylineSubjectToClipper(Clipper clipper, Point[] lineVert /// object representing the rectangle. /// /// the width of the rectangle. - public static float LongRectCalculateWidth(IntRect rect) { - return (float)(Math.Abs(rect.left - rect.right) / iText.Kernel.Pdf.Canvas.Parser.ClipperLib.ClipperBridge. - floatMultiplier); + public float LongRectCalculateWidth(IntRect rect) { + return (float)(Math.Abs(rect.left - rect.right) / GetFloatMultiplier()); } /// @@ -450,13 +534,21 @@ public static float LongRectCalculateWidth(IntRect rect) { /// object representing the rectangle. /// /// the height of the rectangle. - public static float LongRectCalculateHeight(IntRect rect) { - return (float)(Math.Abs(rect.top - rect.bottom) / iText.Kernel.Pdf.Canvas.Parser.ClipperLib.ClipperBridge. - floatMultiplier); + public float LongRectCalculateHeight(IntRect rect) { + return (float)(Math.Abs(rect.top - rect.bottom) / GetFloatMultiplier()); + } + + /// Gets multiplier coefficient for converting our floating point numbers into fixed point numbers. + /// multiplier coefficient for converting our floating point numbers into fixed point numbers + public double GetFloatMultiplier() { + if (floatMultiplier == null) { + return approximatedFloatMultiplier; + } + return (double)floatMultiplier; } //\cond DO_NOT_DOCUMENT - internal static void AddContour(Path path, IList contour, bool close) { + internal void AddContour(Path path, IList contour, bool close) { IList floatContour = ConvertToFloatPoints(contour); Point point = floatContour[0]; path.MoveTo((float)point.GetX(), (float)point.GetY()); @@ -469,5 +561,20 @@ internal static void AddContour(Path path, IList contour, bool close) } } //\endcond + + private void CalculateFloatMultiplier(params Point[][] points) { + double maxPoint = 0; + foreach (Point[] pointsArray in points) { + foreach (Point point in pointsArray) { + maxPoint = Math.Max(maxPoint, Math.Abs(point.GetX())); + maxPoint = Math.Max(maxPoint, Math.Abs(point.GetY())); + } + } + // The significand of the double type is approximately 15 to 17 decimal digits for most platforms. + double epsilon = 1E-16; + if (maxPoint > epsilon) { + this.approximatedFloatMultiplier = Math.Floor(MAX_ALLOWED_VALUE / maxPoint); + } + } } } diff --git a/port-hash b/port-hash index 9413a40b2c..293085fcc7 100644 --- a/port-hash +++ b/port-hash @@ -1 +1 @@ -e84bb3e25bfeda609158e655bd754ec159ce6db3 +1bb85b3f24c5e613afa2a6219a459939b5dcb9ef From 31c34cbd34bcff40db66070e1b436d6cc7aeddc4 Mon Sep 17 00:00:00 2001 From: Apryse Software Date: Fri, 11 Oct 2024 13:12:01 +0000 Subject: [PATCH 2/2] [AFTER RELEASE] 9.0.0 --- itext.nuspec | 6 +++--- .../itext.barcodes.tests/Properties/AssemblyInfo.cs | 6 +++--- .../itext.commons.tests/Properties/AssemblyInfo.cs | 6 +++--- itext.tests/itext.forms.tests/Properties/AssemblyInfo.cs | 6 +++--- itext.tests/itext.io.tests/Properties/AssemblyInfo.cs | 6 +++--- itext.tests/itext.kernel.tests/Properties/AssemblyInfo.cs | 6 +++--- itext.tests/itext.layout.tests/Properties/AssemblyInfo.cs | 6 +++--- itext.tests/itext.pdfa.tests/Properties/AssemblyInfo.cs | 6 +++--- .../itext.pdftest.tests/Properties/AssemblyInfo.cs | 6 +++--- itext.tests/itext.pdfua.tests/Properties/AssemblyInfo.cs | 6 +++--- itext.tests/itext.sign.tests/Properties/AssemblyInfo.cs | 6 +++--- .../Properties/AssemblyInfo.cs | 6 +++--- itext.tests/itext.svg.tests/Properties/AssemblyInfo.cs | 6 +++--- itext/itext.barcodes/Properties/AssemblyInfo.cs | 6 +++--- .../Properties/AssemblyInfo.cs | 6 +++--- .../itext-bouncy-castle-adapter.nuspec | 6 +++--- .../Properties/AssemblyInfo.cs | 6 +++--- .../Properties/AssemblyInfo.cs | 6 +++--- .../itext-bouncy-castle-fips-adapter.nuspec | 4 ++-- itext/itext.commons/Properties/AssemblyInfo.cs | 6 +++--- itext/itext.commons/itext-commons.nuspec | 2 +- .../itext/commons/actions/data/CommonsProductData.cs | 2 +- itext/itext.font-asian/Properties/AssemblyInfo.cs | 6 +++--- itext/itext.font-asian/iText Asian Font.nuspec | 2 +- itext/itext.forms/Properties/AssemblyInfo.cs | 6 +++--- itext/itext.hyph/Properties/AssemblyInfo.cs | 6 +++--- itext/itext.hyph/iText Hyph.nuspec | 2 +- itext/itext.io/Properties/AssemblyInfo.cs | 6 +++--- itext/itext.kernel/Properties/AssemblyInfo.cs | 6 +++--- .../itext/kernel/actions/data/ITextCoreProductData.cs | 2 +- itext/itext.layout/Properties/AssemblyInfo.cs | 8 ++++---- itext/itext.pdfa/Properties/AssemblyInfo.cs | 6 +++--- itext/itext.pdftest/Properties/AssemblyInfo.cs | 6 +++--- itext/itext.pdftest/itext-pdftest.nuspec | 2 +- itext/itext.pdfua/Properties/AssemblyInfo.cs | 6 +++--- itext/itext.sign/Properties/AssemblyInfo.cs | 6 +++--- itext/itext.styledxmlparser/Properties/AssemblyInfo.cs | 6 +++--- itext/itext.svg/Properties/AssemblyInfo.cs | 6 +++--- port-hash | 2 +- 39 files changed, 103 insertions(+), 103 deletions(-) diff --git a/itext.nuspec b/itext.nuspec index 81be98c29e..6ebb860dad 100644 --- a/itext.nuspec +++ b/itext.nuspec @@ -2,7 +2,7 @@ itext - 9.0.0-SNAPSHOT + 9.0.1-SNAPSHOT iText Community Apryse Software Apryse Software @@ -19,11 +19,11 @@ - + - + diff --git a/itext.tests/itext.barcodes.tests/Properties/AssemblyInfo.cs b/itext.tests/itext.barcodes.tests/Properties/AssemblyInfo.cs index 7f19894e40..60aa230649 100644 --- a/itext.tests/itext.barcodes.tests/Properties/AssemblyInfo.cs +++ b/itext.tests/itext.barcodes.tests/Properties/AssemblyInfo.cs @@ -14,9 +14,9 @@ [assembly: Guid("d015a3aa-613c-45d9-b908-7d47c4b613af")] -[assembly: AssemblyVersion("9.0.0.0")] -[assembly: AssemblyFileVersion("9.0.0.0")] -[assembly: AssemblyInformationalVersion("9.0.0-SNAPSHOT")] +[assembly: AssemblyVersion("9.0.1.0")] +[assembly: AssemblyFileVersion("9.0.1.0")] +[assembly: AssemblyInformationalVersion("9.0.1-SNAPSHOT")] #if !NETSTANDARD2_0 [assembly: NUnit.Framework.Timeout(300000)] diff --git a/itext.tests/itext.commons.tests/Properties/AssemblyInfo.cs b/itext.tests/itext.commons.tests/Properties/AssemblyInfo.cs index d28575d80a..18e07eceb8 100644 --- a/itext.tests/itext.commons.tests/Properties/AssemblyInfo.cs +++ b/itext.tests/itext.commons.tests/Properties/AssemblyInfo.cs @@ -15,9 +15,9 @@ [assembly: Guid("502eda37-c014-4822-8e5c-4e5d21b085e9")] -[assembly: AssemblyVersion("9.0.0.0")] -[assembly: AssemblyFileVersion("9.0.0.0")] -[assembly: AssemblyInformationalVersion("9.0.0-SNAPSHOT")] +[assembly: AssemblyVersion("9.0.1.0")] +[assembly: AssemblyFileVersion("9.0.1.0")] +[assembly: AssemblyInformationalVersion("9.0.1-SNAPSHOT")] #if !NETSTANDARD2_0 [assembly: NUnit.Framework.Timeout(300000)] diff --git a/itext.tests/itext.forms.tests/Properties/AssemblyInfo.cs b/itext.tests/itext.forms.tests/Properties/AssemblyInfo.cs index fd68229dbb..f731f9ec59 100644 --- a/itext.tests/itext.forms.tests/Properties/AssemblyInfo.cs +++ b/itext.tests/itext.forms.tests/Properties/AssemblyInfo.cs @@ -14,9 +14,9 @@ [assembly: Guid("6fe2f714-6b3e-4b20-8c70-28bfce084ed2")] -[assembly: AssemblyVersion("9.0.0.0")] -[assembly: AssemblyFileVersion("9.0.0.0")] -[assembly: AssemblyInformationalVersion("9.0.0-SNAPSHOT")] +[assembly: AssemblyVersion("9.0.1.0")] +[assembly: AssemblyFileVersion("9.0.1.0")] +[assembly: AssemblyInformationalVersion("9.0.1-SNAPSHOT")] #if !NETSTANDARD2_0 [assembly: NUnit.Framework.Timeout(300000)] diff --git a/itext.tests/itext.io.tests/Properties/AssemblyInfo.cs b/itext.tests/itext.io.tests/Properties/AssemblyInfo.cs index 91723ff0e1..250f953d1a 100644 --- a/itext.tests/itext.io.tests/Properties/AssemblyInfo.cs +++ b/itext.tests/itext.io.tests/Properties/AssemblyInfo.cs @@ -15,9 +15,9 @@ [assembly: Guid("a53a5dd3-787b-4563-8778-1d76bdad57ba")] -[assembly: AssemblyVersion("9.0.0.0")] -[assembly: AssemblyFileVersion("9.0.0.0")] -[assembly: AssemblyInformationalVersion("9.0.0-SNAPSHOT")] +[assembly: AssemblyVersion("9.0.1.0")] +[assembly: AssemblyFileVersion("9.0.1.0")] +[assembly: AssemblyInformationalVersion("9.0.1-SNAPSHOT")] #if !NETSTANDARD2_0 [assembly: NUnit.Framework.Timeout(300000)] diff --git a/itext.tests/itext.kernel.tests/Properties/AssemblyInfo.cs b/itext.tests/itext.kernel.tests/Properties/AssemblyInfo.cs index 4d3577bd07..22a1ae9f88 100644 --- a/itext.tests/itext.kernel.tests/Properties/AssemblyInfo.cs +++ b/itext.tests/itext.kernel.tests/Properties/AssemblyInfo.cs @@ -15,9 +15,9 @@ [assembly: Guid("02e54061-eb72-409d-b2c0-307ce66b57e9")] -[assembly: AssemblyVersion("9.0.0.0")] -[assembly: AssemblyFileVersion("9.0.0.0")] -[assembly: AssemblyInformationalVersion("9.0.0-SNAPSHOT")] +[assembly: AssemblyVersion("9.0.1.0")] +[assembly: AssemblyFileVersion("9.0.1.0")] +[assembly: AssemblyInformationalVersion("9.0.1-SNAPSHOT")] #if !NETSTANDARD2_0 [assembly: NUnit.Framework.Timeout(300000)] diff --git a/itext.tests/itext.layout.tests/Properties/AssemblyInfo.cs b/itext.tests/itext.layout.tests/Properties/AssemblyInfo.cs index 68dd166e45..4238702a74 100644 --- a/itext.tests/itext.layout.tests/Properties/AssemblyInfo.cs +++ b/itext.tests/itext.layout.tests/Properties/AssemblyInfo.cs @@ -15,9 +15,9 @@ [assembly: Guid("9ad347a8-ea5b-462b-810c-998f04471bb7")] -[assembly: AssemblyVersion("9.0.0.0")] -[assembly: AssemblyFileVersion("9.0.0.0")] -[assembly: AssemblyInformationalVersion("9.0.0-SNAPSHOT")] +[assembly: AssemblyVersion("9.0.1.0")] +[assembly: AssemblyFileVersion("9.0.1.0")] +[assembly: AssemblyInformationalVersion("9.0.1-SNAPSHOT")] #if !NETSTANDARD2_0 [assembly: NUnit.Framework.Timeout(600000)] diff --git a/itext.tests/itext.pdfa.tests/Properties/AssemblyInfo.cs b/itext.tests/itext.pdfa.tests/Properties/AssemblyInfo.cs index bacc6eb90e..52e85914eb 100644 --- a/itext.tests/itext.pdfa.tests/Properties/AssemblyInfo.cs +++ b/itext.tests/itext.pdfa.tests/Properties/AssemblyInfo.cs @@ -15,9 +15,9 @@ [assembly: Guid("b7c0e021-71ac-4c97-9a51-8356f1bd53c7")] -[assembly: AssemblyVersion("9.0.0.0")] -[assembly: AssemblyFileVersion("9.0.0.0")] -[assembly: AssemblyInformationalVersion("9.0.0-SNAPSHOT")] +[assembly: AssemblyVersion("9.0.1.0")] +[assembly: AssemblyFileVersion("9.0.1.0")] +[assembly: AssemblyInformationalVersion("9.0.1-SNAPSHOT")] #if !NETSTANDARD2_0 [assembly: NUnit.Framework.Timeout(300000)] diff --git a/itext.tests/itext.pdftest.tests/Properties/AssemblyInfo.cs b/itext.tests/itext.pdftest.tests/Properties/AssemblyInfo.cs index beddbc2326..7d68345bbf 100644 --- a/itext.tests/itext.pdftest.tests/Properties/AssemblyInfo.cs +++ b/itext.tests/itext.pdftest.tests/Properties/AssemblyInfo.cs @@ -15,6 +15,6 @@ [assembly: Guid("f9880dc4-f015-4413-af86-66d0e9512774")] -[assembly: AssemblyVersion("9.0.0.0")] -[assembly: AssemblyFileVersion("9.0.0.0")] -[assembly: AssemblyInformationalVersion("9.0.0-SNAPSHOT")] +[assembly: AssemblyVersion("9.0.1.0")] +[assembly: AssemblyFileVersion("9.0.1.0")] +[assembly: AssemblyInformationalVersion("9.0.1-SNAPSHOT")] diff --git a/itext.tests/itext.pdfua.tests/Properties/AssemblyInfo.cs b/itext.tests/itext.pdfua.tests/Properties/AssemblyInfo.cs index 4c70a2a217..20c91bb05e 100644 --- a/itext.tests/itext.pdfua.tests/Properties/AssemblyInfo.cs +++ b/itext.tests/itext.pdfua.tests/Properties/AssemblyInfo.cs @@ -15,9 +15,9 @@ [assembly: Guid("f542854e-7f6b-4207-b6ca-004a5d266e65")] -[assembly: AssemblyVersion("9.0.0.0")] -[assembly: AssemblyFileVersion("9.0.0.0")] -[assembly: AssemblyInformationalVersion("9.0.0-SNAPSHOT")] +[assembly: AssemblyVersion("9.0.1.0")] +[assembly: AssemblyFileVersion("9.0.1.0")] +[assembly: AssemblyInformationalVersion("9.0.1-SNAPSHOT")] #if !NETSTANDARD2_0 [assembly: NUnit.Framework.Timeout(300000)] diff --git a/itext.tests/itext.sign.tests/Properties/AssemblyInfo.cs b/itext.tests/itext.sign.tests/Properties/AssemblyInfo.cs index 950e25627f..6a4f7e39f3 100644 --- a/itext.tests/itext.sign.tests/Properties/AssemblyInfo.cs +++ b/itext.tests/itext.sign.tests/Properties/AssemblyInfo.cs @@ -15,9 +15,9 @@ [assembly: Guid("be15bdf3-b184-4e2f-8459-ebee3160e19d")] -[assembly: AssemblyVersion("9.0.0.0")] -[assembly: AssemblyFileVersion("9.0.0.0")] -[assembly: AssemblyInformationalVersion("9.0.0-SNAPSHOT")] +[assembly: AssemblyVersion("9.0.1.0")] +[assembly: AssemblyFileVersion("9.0.1.0")] +[assembly: AssemblyInformationalVersion("9.0.1-SNAPSHOT")] #if !NETSTANDARD2_0 [assembly: NUnit.Framework.Timeout(300000)] diff --git a/itext.tests/itext.styledxmlparser.tests/Properties/AssemblyInfo.cs b/itext.tests/itext.styledxmlparser.tests/Properties/AssemblyInfo.cs index b25b0b4b20..b299497797 100644 --- a/itext.tests/itext.styledxmlparser.tests/Properties/AssemblyInfo.cs +++ b/itext.tests/itext.styledxmlparser.tests/Properties/AssemblyInfo.cs @@ -15,9 +15,9 @@ [assembly: Guid("409b5131-4d0c-4e4b-9c7b-2407a8356ca4")] -[assembly: AssemblyVersion("9.0.0.0")] -[assembly: AssemblyFileVersion("9.0.0.0")] -[assembly: AssemblyInformationalVersion("9.0.0-SNAPSHOT")] +[assembly: AssemblyVersion("9.0.1.0")] +[assembly: AssemblyFileVersion("9.0.1.0")] +[assembly: AssemblyInformationalVersion("9.0.1-SNAPSHOT")] #if !NETSTANDARD2_0 [assembly: NUnit.Framework.Timeout(300000)] diff --git a/itext.tests/itext.svg.tests/Properties/AssemblyInfo.cs b/itext.tests/itext.svg.tests/Properties/AssemblyInfo.cs index d3f25b6a0c..0dee3a9b56 100644 --- a/itext.tests/itext.svg.tests/Properties/AssemblyInfo.cs +++ b/itext.tests/itext.svg.tests/Properties/AssemblyInfo.cs @@ -15,9 +15,9 @@ [assembly: Guid("ae4e5743-0665-4705-9a33-07ea57cdd269")] -[assembly: AssemblyVersion("9.0.0.0")] -[assembly: AssemblyFileVersion("9.0.0.0")] -[assembly: AssemblyInformationalVersion("9.0.0-SNAPSHOT")] +[assembly: AssemblyVersion("9.0.1.0")] +[assembly: AssemblyFileVersion("9.0.1.0")] +[assembly: AssemblyInformationalVersion("9.0.1-SNAPSHOT")] #if !NETSTANDARD2_0 [assembly: NUnit.Framework.Timeout(300000)] diff --git a/itext/itext.barcodes/Properties/AssemblyInfo.cs b/itext/itext.barcodes/Properties/AssemblyInfo.cs index 4bd2d58674..027ba23097 100644 --- a/itext/itext.barcodes/Properties/AssemblyInfo.cs +++ b/itext/itext.barcodes/Properties/AssemblyInfo.cs @@ -21,6 +21,6 @@ [assembly: Guid("8694665a-5749-40c6-9e9c-53c686a77ad1")] -[assembly: AssemblyVersion("9.0.0.0")] -[assembly: AssemblyFileVersion("9.0.0.0")] -[assembly: AssemblyInformationalVersion("9.0.0-SNAPSHOT")] +[assembly: AssemblyVersion("9.0.1.0")] +[assembly: AssemblyFileVersion("9.0.1.0")] +[assembly: AssemblyInformationalVersion("9.0.1-SNAPSHOT")] diff --git a/itext/itext.bouncy-castle-adapter/Properties/AssemblyInfo.cs b/itext/itext.bouncy-castle-adapter/Properties/AssemblyInfo.cs index 855294b5dc..b9976fe9ad 100644 --- a/itext/itext.bouncy-castle-adapter/Properties/AssemblyInfo.cs +++ b/itext/itext.bouncy-castle-adapter/Properties/AssemblyInfo.cs @@ -15,6 +15,6 @@ [assembly: Guid("3c83a192-e64a-4134-ade9-38f65c8e9fca")] -[assembly: AssemblyVersion("9.0.0.0")] -[assembly: AssemblyFileVersion("9.0.0.0")] -[assembly: AssemblyInformationalVersion("9.0.0-SNAPSHOT")] \ No newline at end of file +[assembly: AssemblyVersion("9.0.1.0")] +[assembly: AssemblyFileVersion("9.0.1.0")] +[assembly: AssemblyInformationalVersion("9.0.1-SNAPSHOT")] \ No newline at end of file diff --git a/itext/itext.bouncy-castle-adapter/itext-bouncy-castle-adapter.nuspec b/itext/itext.bouncy-castle-adapter/itext-bouncy-castle-adapter.nuspec index 11ac1e0d88..588c64baec 100644 --- a/itext/itext.bouncy-castle-adapter/itext-bouncy-castle-adapter.nuspec +++ b/itext/itext.bouncy-castle-adapter/itext-bouncy-castle-adapter.nuspec @@ -2,7 +2,7 @@ itext.bouncy-castle-adapter - 9.0.0-SNAPSHOT + 9.0.1-SNAPSHOT iText bouncy-castle adapter module Apryse Software Apryse Software @@ -18,11 +18,11 @@ itext itext7 itextsharp c# .net csharp - + - + diff --git a/itext/itext.bouncy-castle-connector/Properties/AssemblyInfo.cs b/itext/itext.bouncy-castle-connector/Properties/AssemblyInfo.cs index c9de1624df..766e66bdc5 100644 --- a/itext/itext.bouncy-castle-connector/Properties/AssemblyInfo.cs +++ b/itext/itext.bouncy-castle-connector/Properties/AssemblyInfo.cs @@ -15,6 +15,6 @@ [assembly: Guid("56eaf103-2032-43eb-a7dd-fbeea5c5cb9c")] -[assembly: AssemblyVersion("9.0.0.0")] -[assembly: AssemblyFileVersion("9.0.0.0")] -[assembly: AssemblyInformationalVersion("9.0.0-SNAPSHOT")] \ No newline at end of file +[assembly: AssemblyVersion("9.0.1.0")] +[assembly: AssemblyFileVersion("9.0.1.0")] +[assembly: AssemblyInformationalVersion("9.0.1-SNAPSHOT")] \ No newline at end of file diff --git a/itext/itext.bouncy-castle-fips-adapter/Properties/AssemblyInfo.cs b/itext/itext.bouncy-castle-fips-adapter/Properties/AssemblyInfo.cs index ee238fc38e..4277539770 100644 --- a/itext/itext.bouncy-castle-fips-adapter/Properties/AssemblyInfo.cs +++ b/itext/itext.bouncy-castle-fips-adapter/Properties/AssemblyInfo.cs @@ -15,6 +15,6 @@ [assembly: Guid("4e9a859e-f268-49cc-ac3c-c5b9632b3290")] -[assembly: AssemblyVersion("9.0.0.0")] -[assembly: AssemblyFileVersion("9.0.0.0")] -[assembly: AssemblyInformationalVersion("9.0.0-SNAPSHOT")] \ No newline at end of file +[assembly: AssemblyVersion("9.0.1.0")] +[assembly: AssemblyFileVersion("9.0.1.0")] +[assembly: AssemblyInformationalVersion("9.0.1-SNAPSHOT")] \ No newline at end of file diff --git a/itext/itext.bouncy-castle-fips-adapter/itext-bouncy-castle-fips-adapter.nuspec b/itext/itext.bouncy-castle-fips-adapter/itext-bouncy-castle-fips-adapter.nuspec index e5c963afbb..baab8bc2de 100644 --- a/itext/itext.bouncy-castle-fips-adapter/itext-bouncy-castle-fips-adapter.nuspec +++ b/itext/itext.bouncy-castle-fips-adapter/itext-bouncy-castle-fips-adapter.nuspec @@ -2,7 +2,7 @@ itext.bouncy-castle-fips-adapter - 9.0.0-SNAPSHOT + 9.0.1-SNAPSHOT iText bouncy-castle FIPS adapter module Apryse Software Apryse Software @@ -18,7 +18,7 @@ itext itext7 itextsharp c# .net csharp - + diff --git a/itext/itext.commons/Properties/AssemblyInfo.cs b/itext/itext.commons/Properties/AssemblyInfo.cs index eeb71d9916..b1fdbdc56b 100644 --- a/itext/itext.commons/Properties/AssemblyInfo.cs +++ b/itext/itext.commons/Properties/AssemblyInfo.cs @@ -39,6 +39,6 @@ [assembly: Guid("339569d2-3ba2-41cc-972c-70b05e4c4fcd")] -[assembly: AssemblyVersion("9.0.0.0")] -[assembly: AssemblyFileVersion("9.0.0.0")] -[assembly: AssemblyInformationalVersion("9.0.0-SNAPSHOT")] +[assembly: AssemblyVersion("9.0.1.0")] +[assembly: AssemblyFileVersion("9.0.1.0")] +[assembly: AssemblyInformationalVersion("9.0.1-SNAPSHOT")] diff --git a/itext/itext.commons/itext-commons.nuspec b/itext/itext.commons/itext-commons.nuspec index da28471478..a72b3880d1 100644 --- a/itext/itext.commons/itext-commons.nuspec +++ b/itext/itext.commons/itext-commons.nuspec @@ -2,7 +2,7 @@ itext.commons - 9.0.0-SNAPSHOT + 9.0.1-SNAPSHOT iText commons module Apryse Software Apryse Software diff --git a/itext/itext.commons/itext/commons/actions/data/CommonsProductData.cs b/itext/itext.commons/itext/commons/actions/data/CommonsProductData.cs index d4a1a2f7eb..5e4c534b21 100644 --- a/itext/itext.commons/itext/commons/actions/data/CommonsProductData.cs +++ b/itext/itext.commons/itext/commons/actions/data/CommonsProductData.cs @@ -38,7 +38,7 @@ public sealed class CommonsProductData { //\endcond //\cond DO_NOT_DOCUMENT - internal const String COMMONS_VERSION = "9.0.0-SNAPSHOT"; + internal const String COMMONS_VERSION = "9.0.1-SNAPSHOT"; //\endcond //\cond DO_NOT_DOCUMENT diff --git a/itext/itext.font-asian/Properties/AssemblyInfo.cs b/itext/itext.font-asian/Properties/AssemblyInfo.cs index bbcc2e5ec7..180ae4af10 100644 --- a/itext/itext.font-asian/Properties/AssemblyInfo.cs +++ b/itext/itext.font-asian/Properties/AssemblyInfo.cs @@ -15,6 +15,6 @@ [assembly: Guid("0f10190c-7611-4378-a157-03bf2ed78e30")] -[assembly: AssemblyVersion("9.0.0.0")] -[assembly: AssemblyFileVersion("9.0.0.0")] -[assembly: AssemblyInformationalVersion("9.0.0-SNAPSHOT")] +[assembly: AssemblyVersion("9.0.1.0")] +[assembly: AssemblyFileVersion("9.0.1.0")] +[assembly: AssemblyInformationalVersion("9.0.1-SNAPSHOT")] diff --git a/itext/itext.font-asian/iText Asian Font.nuspec b/itext/itext.font-asian/iText Asian Font.nuspec index 37c201d660..98114db0a9 100644 --- a/itext/itext.font-asian/iText Asian Font.nuspec +++ b/itext/itext.font-asian/iText Asian Font.nuspec @@ -2,7 +2,7 @@ itext.font-asian - 9.0.0-SNAPSHOT + 9.0.1-SNAPSHOT iText Asian Font Apryse Software Apryse Software diff --git a/itext/itext.forms/Properties/AssemblyInfo.cs b/itext/itext.forms/Properties/AssemblyInfo.cs index a8358d56ca..da7e44e27c 100644 --- a/itext/itext.forms/Properties/AssemblyInfo.cs +++ b/itext/itext.forms/Properties/AssemblyInfo.cs @@ -20,6 +20,6 @@ [assembly: Guid("2257d7e6-2873-4cfb-ac3c-b24765a4b3b1")] -[assembly: AssemblyVersion("9.0.0.0")] -[assembly: AssemblyFileVersion("9.0.0.0")] -[assembly: AssemblyInformationalVersion("9.0.0-SNAPSHOT")] +[assembly: AssemblyVersion("9.0.1.0")] +[assembly: AssemblyFileVersion("9.0.1.0")] +[assembly: AssemblyInformationalVersion("9.0.1-SNAPSHOT")] diff --git a/itext/itext.hyph/Properties/AssemblyInfo.cs b/itext/itext.hyph/Properties/AssemblyInfo.cs index b5e8b6f254..7ae34c0b1b 100644 --- a/itext/itext.hyph/Properties/AssemblyInfo.cs +++ b/itext/itext.hyph/Properties/AssemblyInfo.cs @@ -15,6 +15,6 @@ [assembly: Guid("56137079-541a-425a-ab97-43af63793c97")] -[assembly: AssemblyVersion("9.0.0.0")] -[assembly: AssemblyFileVersion("9.0.0.0")] -[assembly: AssemblyInformationalVersion("9.0.0-SNAPSHOT")] +[assembly: AssemblyVersion("9.0.1.0")] +[assembly: AssemblyFileVersion("9.0.1.0")] +[assembly: AssemblyInformationalVersion("9.0.1-SNAPSHOT")] diff --git a/itext/itext.hyph/iText Hyph.nuspec b/itext/itext.hyph/iText Hyph.nuspec index 10618272a0..5102cc397e 100644 --- a/itext/itext.hyph/iText Hyph.nuspec +++ b/itext/itext.hyph/iText Hyph.nuspec @@ -2,7 +2,7 @@ itext.hyph - 9.0.0-SNAPSHOT + 9.0.1-SNAPSHOT iText Hyph Apryse Software Apryse Software diff --git a/itext/itext.io/Properties/AssemblyInfo.cs b/itext/itext.io/Properties/AssemblyInfo.cs index f3c7a0d894..46ca83be4f 100644 --- a/itext/itext.io/Properties/AssemblyInfo.cs +++ b/itext/itext.io/Properties/AssemblyInfo.cs @@ -35,6 +35,6 @@ [assembly: Guid("39631ecb-1d39-4eb2-b775-37bd34cbf5a4")] -[assembly: AssemblyVersion("9.0.0.0")] -[assembly: AssemblyFileVersion("9.0.0.0")] -[assembly: AssemblyInformationalVersion("9.0.0-SNAPSHOT")] +[assembly: AssemblyVersion("9.0.1.0")] +[assembly: AssemblyFileVersion("9.0.1.0")] +[assembly: AssemblyInformationalVersion("9.0.1-SNAPSHOT")] diff --git a/itext/itext.kernel/Properties/AssemblyInfo.cs b/itext/itext.kernel/Properties/AssemblyInfo.cs index 0e40ac744f..da814f9075 100644 --- a/itext/itext.kernel/Properties/AssemblyInfo.cs +++ b/itext/itext.kernel/Properties/AssemblyInfo.cs @@ -21,6 +21,6 @@ [assembly: Guid("be4c62cc-6495-47e1-ab00-05b1bfe331f6")] -[assembly: AssemblyVersion("9.0.0.0")] -[assembly: AssemblyFileVersion("9.0.0.0")] -[assembly: AssemblyInformationalVersion("9.0.0-SNAPSHOT")] +[assembly: AssemblyVersion("9.0.1.0")] +[assembly: AssemblyFileVersion("9.0.1.0")] +[assembly: AssemblyInformationalVersion("9.0.1-SNAPSHOT")] diff --git a/itext/itext.kernel/itext/kernel/actions/data/ITextCoreProductData.cs b/itext/itext.kernel/itext/kernel/actions/data/ITextCoreProductData.cs index 639e1c2ade..fdad740a40 100644 --- a/itext/itext.kernel/itext/kernel/actions/data/ITextCoreProductData.cs +++ b/itext/itext.kernel/itext/kernel/actions/data/ITextCoreProductData.cs @@ -33,7 +33,7 @@ namespace iText.Kernel.Actions.Data { public sealed class ITextCoreProductData { private const String CORE_PUBLIC_PRODUCT_NAME = "Core"; - private const String CORE_VERSION = "9.0.0-SNAPSHOT"; + private const String CORE_VERSION = "9.0.1-SNAPSHOT"; private const int CORE_COPYRIGHT_SINCE = 2000; diff --git a/itext/itext.layout/Properties/AssemblyInfo.cs b/itext/itext.layout/Properties/AssemblyInfo.cs index ba444f9760..3277d62f6a 100644 --- a/itext/itext.layout/Properties/AssemblyInfo.cs +++ b/itext/itext.layout/Properties/AssemblyInfo.cs @@ -22,8 +22,8 @@ [assembly: Guid("fd0a08a8-0f82-4d6f-a3db-7b8f3f9302b4")] -[assembly: TypographyVersion("5.0.0.0")] +[assembly: TypographyVersion("5.0.1.0")] -[assembly: AssemblyVersion("9.0.0.0")] -[assembly: AssemblyFileVersion("9.0.0.0")] -[assembly: AssemblyInformationalVersion("9.0.0-SNAPSHOT")] +[assembly: AssemblyVersion("9.0.1.0")] +[assembly: AssemblyFileVersion("9.0.1.0")] +[assembly: AssemblyInformationalVersion("9.0.1-SNAPSHOT")] diff --git a/itext/itext.pdfa/Properties/AssemblyInfo.cs b/itext/itext.pdfa/Properties/AssemblyInfo.cs index 1ea789c08f..f4ebd2dadb 100644 --- a/itext/itext.pdfa/Properties/AssemblyInfo.cs +++ b/itext/itext.pdfa/Properties/AssemblyInfo.cs @@ -21,6 +21,6 @@ [assembly: Guid("9fc2f0b3-a8d2-46da-8724-72e00e67a8fa")] -[assembly: AssemblyVersion("9.0.0.0")] -[assembly: AssemblyFileVersion("9.0.0.0")] -[assembly: AssemblyInformationalVersion("9.0.0-SNAPSHOT")] +[assembly: AssemblyVersion("9.0.1.0")] +[assembly: AssemblyFileVersion("9.0.1.0")] +[assembly: AssemblyInformationalVersion("9.0.1-SNAPSHOT")] diff --git a/itext/itext.pdftest/Properties/AssemblyInfo.cs b/itext/itext.pdftest/Properties/AssemblyInfo.cs index 0d8a7f5536..e9e2c32b64 100644 --- a/itext/itext.pdftest/Properties/AssemblyInfo.cs +++ b/itext/itext.pdftest/Properties/AssemblyInfo.cs @@ -20,6 +20,6 @@ [assembly: Guid("f9880dc4-f015-4413-af86-66d0e9512774")] -[assembly: AssemblyVersion("9.0.0.0")] -[assembly: AssemblyFileVersion("9.0.0.0")] -[assembly: AssemblyInformationalVersion("9.0.0-SNAPSHOT")] +[assembly: AssemblyVersion("9.0.1.0")] +[assembly: AssemblyFileVersion("9.0.1.0")] +[assembly: AssemblyInformationalVersion("9.0.1-SNAPSHOT")] diff --git a/itext/itext.pdftest/itext-pdftest.nuspec b/itext/itext.pdftest/itext-pdftest.nuspec index d0f3fe20c3..117a08e914 100644 --- a/itext/itext.pdftest/itext-pdftest.nuspec +++ b/itext/itext.pdftest/itext-pdftest.nuspec @@ -2,7 +2,7 @@ itext.pdftest - 9.0.0-SNAPSHOT + 9.0.1-SNAPSHOT iText pdftest module Apryse Software Apryse Software diff --git a/itext/itext.pdfua/Properties/AssemblyInfo.cs b/itext/itext.pdfua/Properties/AssemblyInfo.cs index 3bd850252f..850027577e 100644 --- a/itext/itext.pdfua/Properties/AssemblyInfo.cs +++ b/itext/itext.pdfua/Properties/AssemblyInfo.cs @@ -21,6 +21,6 @@ [assembly: Guid("661fd317-7340-42a4-a7f0-07a60ad3d278")] -[assembly: AssemblyVersion("9.0.0.0")] -[assembly: AssemblyFileVersion("9.0.0.0")] -[assembly: AssemblyInformationalVersion("9.0.0-SNAPSHOT")] +[assembly: AssemblyVersion("9.0.1.0")] +[assembly: AssemblyFileVersion("9.0.1.0")] +[assembly: AssemblyInformationalVersion("9.0.1-SNAPSHOT")] diff --git a/itext/itext.sign/Properties/AssemblyInfo.cs b/itext/itext.sign/Properties/AssemblyInfo.cs index 8672d95436..51a6be6e41 100644 --- a/itext/itext.sign/Properties/AssemblyInfo.cs +++ b/itext/itext.sign/Properties/AssemblyInfo.cs @@ -21,6 +21,6 @@ [assembly: Guid("5092244a-a2ed-49d2-97fb-f513d965a8f7")] -[assembly: AssemblyVersion("9.0.0.0")] -[assembly: AssemblyFileVersion("9.0.0.0")] -[assembly: AssemblyInformationalVersion("9.0.0-SNAPSHOT")] +[assembly: AssemblyVersion("9.0.1.0")] +[assembly: AssemblyFileVersion("9.0.1.0")] +[assembly: AssemblyInformationalVersion("9.0.1-SNAPSHOT")] diff --git a/itext/itext.styledxmlparser/Properties/AssemblyInfo.cs b/itext/itext.styledxmlparser/Properties/AssemblyInfo.cs index 1c7ee5202c..a78432e02f 100644 --- a/itext/itext.styledxmlparser/Properties/AssemblyInfo.cs +++ b/itext/itext.styledxmlparser/Properties/AssemblyInfo.cs @@ -21,6 +21,6 @@ [assembly: Guid("8636f290-00df-403e-b841-e4bfd6d9ce7a")] -[assembly: AssemblyVersion("9.0.0.0")] -[assembly: AssemblyFileVersion("9.0.0.0")] -[assembly: AssemblyInformationalVersion("9.0.0-SNAPSHOT")] +[assembly: AssemblyVersion("9.0.1.0")] +[assembly: AssemblyFileVersion("9.0.1.0")] +[assembly: AssemblyInformationalVersion("9.0.1-SNAPSHOT")] diff --git a/itext/itext.svg/Properties/AssemblyInfo.cs b/itext/itext.svg/Properties/AssemblyInfo.cs index 856dc62b35..b6e620c7bf 100644 --- a/itext/itext.svg/Properties/AssemblyInfo.cs +++ b/itext/itext.svg/Properties/AssemblyInfo.cs @@ -21,6 +21,6 @@ [assembly: Guid("ff6ba09d-3655-466a-8c17-a7bfd3479ca1")] -[assembly: AssemblyVersion("9.0.0.0")] -[assembly: AssemblyFileVersion("9.0.0.0")] -[assembly: AssemblyInformationalVersion("9.0.0-SNAPSHOT")] +[assembly: AssemblyVersion("9.0.1.0")] +[assembly: AssemblyFileVersion("9.0.1.0")] +[assembly: AssemblyInformationalVersion("9.0.1-SNAPSHOT")] diff --git a/port-hash b/port-hash index 293085fcc7..04815b0f1f 100644 --- a/port-hash +++ b/port-hash @@ -1 +1 @@ -1bb85b3f24c5e613afa2a6219a459939b5dcb9ef +539cff6ef17d323d2ec3e699f4c93f82dadef6b6