rename as 5.3.0-SNAPSHOT due to some changes in behaviour

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1917782 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2024-05-17 11:07:37 +00:00
parent 68478c8b8c
commit 4565d31222
9 changed files with 14 additions and 14 deletions

View File

@ -100,7 +100,7 @@ allprojects {
// apply plugin: 'eclipse'
apply plugin: 'idea'
version = '5.2.6-SNAPSHOT'
version = '5.3.0-SNAPSHOT'
}
/**

View File

@ -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"/>

View File

@ -24,12 +24,12 @@
<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>

View File

@ -23,7 +23,7 @@ import java.net.URI;
/**
* Represents a hyperlink relationship.
*
* @since POI 5.2.6
* @since POI 5.3.0
*/
public class HyperlinkRelationship extends ReferenceRelationship {
/**

View 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() {

View File

@ -24,7 +24,7 @@ import java.net.URI;
/**
* Defines a reference relationship. A reference relationship can be internal or external.
*
* @since POI 5.2.6
* @since POI 5.3.0
*/
public abstract class ReferenceRelationship {
private POIXMLDocumentPart container;

View 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() {

View 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 {

View 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;
}