]> source.dussan.org Git - poi.git/commitdiff
rename as 5.3.0-SNAPSHOT due to some changes in behaviour
authorPJ Fanning <fanningpj@apache.org>
Fri, 17 May 2024 11:07:37 +0000 (11:07 +0000)
committerPJ Fanning <fanningpj@apache.org>
Fri, 17 May 2024 11:07:37 +0000 (11:07 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1917782 13f79535-47bb-0310-9956-ffa450edef68

build.gradle
build.xml
osgi/pom.xml
poi-ooxml/src/main/java/org/apache/poi/ooxml/HyperlinkRelationship.java
poi-ooxml/src/main/java/org/apache/poi/ooxml/POIXMLDocumentPart.java
poi-ooxml/src/main/java/org/apache/poi/ooxml/ReferenceRelationship.java
poi-ooxml/src/main/java/org/apache/poi/openxml4j/util/ZipSecureFile.java
poi-ooxml/src/main/java/org/apache/poi/xdgf/usermodel/section/geometry/PolyLineTo.java
poi-ooxml/src/main/java/org/apache/poi/xwpf/usermodel/Document.java

index 51a861d2d1d30571424729048c65201b8cf0b9f9..41009416d7e44b42d2b76c9b179c05420ec7090b 100644 (file)
@@ -100,7 +100,7 @@ allprojects {
 //    apply plugin: 'eclipse'
     apply plugin: 'idea'
 
-    version = '5.2.6-SNAPSHOT'
+    version = '5.3.0-SNAPSHOT'
 }
 
 /**
index 2d99ebabcafbd59d36fc536c135c7599db41b5ce..91cedffa0d6e13815967861d41f40d8bf5eaed3c 100644 (file)
--- a/build.xml
+++ b/build.xml
@@ -42,7 +42,7 @@ under the License.
 
     <description>The Apache POI project Ant build.</description>
 
-    <property name="version.id" value="5.2.6-SNAPSHOT"/>
+    <property name="version.id" value="5.3.0-SNAPSHOT"/>
     <property name="release.rc" value=""/>
 
     <property environment="env"/>
index 7fb1609167698a52432bc2396caeddf0e22e51e9..91fb4fe5e9cc55a059b4fe18bf6f74d7d27a24f9 100644 (file)
     <groupId>org.apache.poi</groupId>
     <artifactId>poi-bundle</artifactId>
     <packaging>bundle</packaging>
-    <version>5.2.6-SNAPSHOT</version>
+    <version>5.3.0-SNAPSHOT</version>
 
     <name>Apache POI OSGi bundle</name>
     <properties>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-        <poi.version>5.2.6-SNAPSHOT</poi.version>
+        <poi.version>5.3.0-SNAPSHOT</poi.version>
         <pax.exam.version>4.12.0</pax.exam.version>
     </properties>
 
index e9649b3d52a9f4e9aa6c14bfde0cf955dcbda79a..5332c8c120fbdb0f8fc4a483a6b6b85492798476 100644 (file)
@@ -23,7 +23,7 @@ import java.net.URI;
 /**\r
  * Represents a hyperlink relationship.\r
  *\r
- * @since POI 5.2.6\r
+ * @since POI 5.3.0\r
  */\r
 public class HyperlinkRelationship extends ReferenceRelationship {\r
     /**\r
index 32ef6eed8d1a4eb6a6df77100425949894d0fa8c..53a7ebc1bd60a6ced508a80d0f19339a6254aa75 100644 (file)
@@ -235,7 +235,7 @@ public class POIXMLDocumentPart {
      * Returns the list of child relations for this POIXMLDocumentPart.
      *
      * <p>
-     *   Since POI 5.2.6, Reference Relationships are stored separately from other child relations.
+     *   Since POI 5.3.0, Reference Relationships are stored separately from other child relations.
      * </p>
      *
      * @return child relations
@@ -749,7 +749,7 @@ public class POIXMLDocumentPart {
      *
      * @param relId the part which is to be removed
      * @return true, if the relation was removed
-     * @since POI 5.2.6
+     * @since POI 5.3.0
      */
     public final boolean removeReferenceRelationship(String relId) {
         ReferenceRelationship existing = referenceRelationships.remove(relId);
@@ -766,7 +766,7 @@ public class POIXMLDocumentPart {
      *
      * @param relId the relation id
      * @return the reference relationship or {@code null} if not found
-     * @since POI 5.2.6
+     * @since POI 5.3.0
      */
     public final ReferenceRelationship getReferenceRelationship(String relId) {
         return referenceRelationships.get(relId);
@@ -779,7 +779,7 @@ public class POIXMLDocumentPart {
      * @param isExternal true, if the target is an external resource
      * @param relId      the relation id
      * @return the created reference relationship
-     * @since POI 5.2.6
+     * @since POI 5.3.0
      */
     public final HyperlinkRelationship createHyperlink(URI uri, boolean isExternal, String relId) {
         PackageRelationship pr = packagePart.addRelationship(uri, isExternal ? TargetMode.EXTERNAL : TargetMode.INTERNAL,
@@ -793,7 +793,7 @@ public class POIXMLDocumentPart {
      * Returns an unmodifiable list of reference relationships for this POIXMLDocumentPart.
      *
      * @return reference relationships
-     * @since POI 5.2.6
+     * @since POI 5.3.0
      * @see #getRelationParts() for child relations
      */
     public final List<ReferenceRelationship> getReferenceRelationships() {
index dd9fbe8b99887342bb796cb736af6e79dbecfac9..9a20887f452ad7a6abe7bd6c124bde06cddd9db1 100644 (file)
@@ -24,7 +24,7 @@ import java.net.URI;
 /**\r
  * Defines a reference relationship. A reference relationship can be internal or external.\r
  *\r
- * @since POI 5.2.6\r
+ * @since POI 5.3.0\r
  */\r
 public abstract class ReferenceRelationship {\r
     private POIXMLDocumentPart container;\r
index f87c0bdd7ab1e4657ac61907d6d90dc73cc61bcf..60dcb1d53cdd65ab8ab226e96d6dce56aae1d05d 100644 (file)
@@ -240,7 +240,7 @@ public class ZipSecureFile extends ZipFile {
     /**
      * Returns the path name of the ZIP file.
      * @return the path name of the ZIP file
-     * @deprecated there is no need for this method - it will be removed in a future version of POI (deprecated since POI 5.2.6)
+     * @deprecated there is no need for this method - it will be removed in a future version of POI (deprecated since POI 5.3.0)
      */
     @Removal(version = "7.0.0")
     public String getName() {
index 3e772f3a89ac8fb617fd0edaf4f77265feddb34d..8afef6baf9c57e85a2a05655393e5807c6e79c9b 100644 (file)
@@ -26,7 +26,7 @@ import com.microsoft.schemas.office.visio.x2012.main.RowType;
 
 /**
  * Represents a polyline vertex in a shape's geometry.
- * Until POI 5.2.6, this class not was not properly implemented and was throwing an exception.
+ * Until POI 5.3.0, this class not was not properly implemented and was throwing an exception.
  */
 public class PolyLineTo implements GeometryRow {
 
index 62f217d5dc0bc758c934abaa547ab4bb58f83596..5c117e1eb54b4a8c6d25c6fb36bd1ed2323d6685 100644 (file)
@@ -78,7 +78,7 @@ public interface Document {
     /**
      * SVG graphics (.svg)
      *
-     * @since POI 5.2.6
+     * @since POI 5.3.0
      */
     public static final int PICTURE_TYPE_SVG = PictureType.SVG.ooxmlId;
 }