Skip to content

Commit ab68f15

Browse files
committed
Release version 1.0.0
1 parent c7eaecd commit ab68f15

File tree

5 files changed

+13
-11
lines changed

5 files changed

+13
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Key features include:
4545

4646
## Dependencies <a name="dependencies"></a>
4747

48-
This project will be available on Maven Central in a few weeks:
48+
This project is available on Maven Central:
4949

5050
```
5151
<dependency>

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
<parent>
55
<groupId>com.techsenger.maven.root</groupId>
66
<artifactId>maven-root</artifactId>
7-
<version>1.6.0-SNAPSHOT</version>
7+
<version>1.6.0</version>
88
</parent>
99

1010
<groupId>com.techsenger.tabpanepro</groupId>
1111
<artifactId>tabpanepro</artifactId>
12-
<version>1.0.0-SNAPSHOT</version>
12+
<version>1.0.0</version>
1313
<packaging>pom</packaging>
1414
<name>TabPanePro</name>
15-
<description>An extension of the standard OpenJFX TabPane implementation with additional features</description>
15+
<description>TabPanePro is a lightweight JavaFX library that extends TabPane with practical features.</description>
1616

1717
<licenses>
1818
<license>
@@ -64,7 +64,7 @@
6464
<dependency>
6565
<groupId>com.techsenger.osp.bom</groupId>
6666
<artifactId>osp-bom</artifactId>
67-
<version>1.7.0-SNAPSHOT</version>
67+
<version>1.7.0</version>
6868
<type>pom</type>
6969
<scope>import</scope>
7070
</dependency>

tabpanepro-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.techsenger.tabpanepro</groupId>
66
<artifactId>tabpanepro</artifactId>
7-
<version>1.0.0-SNAPSHOT</version>
7+
<version>1.0.0</version>
88
</parent>
99

1010
<groupId>com.techsenger.tabpanepro</groupId>

tabpanepro-core/src/main/java/com/techsenger/tabpanepro/core/TabPanePro.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -281,8 +281,9 @@ public final void removeTabDragHandler(Consumer<Tab> handler) {
281281
/**
282282
* Returns the handlers that are invoked when a tab drag operation begins.
283283
*
284-
* @apiNote <b>This method is for internal use only!</b> Library clients should not call it directly, as it may
285-
* change or be removed without notice in future versions.
284+
* <p>This method is for internal use only! Library clients should not call it directly, as it may
285+
* change or be removed without notice in future versions.
286+
*
286287
* @return the internal list of tab drag handlers (do not modify)
287288
*/
288289
public ObservableList<Consumer<Tab>> getTabDragHandlers() {
@@ -320,8 +321,9 @@ public final void removeTabDropHandler(BiConsumer<Tab, Boolean> handler) {
320321
/**
321322
* Returns the handlers invoked when a tab drag operation ends.
322323
*
323-
* @apiNote <b>This method is for internal use only!</b> Library clients should not call it directly, as it may
324-
* change or be removed without notice in future versions.
324+
* <p>This method is for internal use only! Library clients should not call it directly, as it may change or be
325+
* removed without notice in future versions.
326+
*
325327
* @return the internal list of tab drop handlers (do not modify)
326328
*/
327329
public ObservableList<BiConsumer<Tab, Boolean>> getTabDropHandlers() {

tabpanepro-demo/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.techsenger.tabpanepro</groupId>
66
<artifactId>tabpanepro</artifactId>
7-
<version>1.0.0-SNAPSHOT</version>
7+
<version>1.0.0</version>
88
</parent>
99

1010
<groupId>com.techsenger.tabpanepro</groupId>

0 commit comments

Comments
 (0)