Skip to content

Commit 66a923b

Browse files
committed
Release v1.0.0
1 parent 2592ed7 commit 66a923b

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## [1.0.0] - SNAPSHOT
3+
## [1.0.0] - 2025-10-30
44

55
- Initial release
66
- Added Pagination component

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Swing Pack
22

3-
[![Maven Central](https://img.shields.io/maven-central/v/io.github.dj-raven/java-swing-pack?label=Maven%20Central)](https://central.sonatype.com/artifact/io.github.dj-raven/java-swing-pack)
3+
[![Maven Central](https://img.shields.io/maven-central/v/io.github.dj-raven/swing-pack?label=Maven%20Central)](https://central.sonatype.com/artifact/io.github.dj-raven/swing-pack)
44
[![Stars](https://img.shields.io/github/stars/dj-raven/java-swing-pack?style=social)](https://github.com/dj-raven/java-swing-pack)
55

66
**Swing Pack** is a modern Swing component library for Java desktop development.

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ It provides beautiful, customizable, and ready-to-use UI components with a flat,
55

66
## Installation
77

8-
[![Maven Central](https://img.shields.io/maven-central/v/io.github.dj-raven/java-swing-pack?label=Maven%20Central)](https://central.sonatype.com/artifact/io.github.dj-raven/java-swing-pack)
8+
[![Maven Central](https://img.shields.io/maven-central/v/io.github.dj-raven/swing-pack?label=Maven%20Central)](https://central.sonatype.com/artifact/io.github.dj-raven/swing-pack)
99

1010
Add the dependency
1111

@@ -20,7 +20,7 @@ Add the dependency
2020
### Snapshots
2121

2222
To get the latest updates before the release, you can use the snapshot version
23-
from [Sonatype Central](https://central.sonatype.com/service/rest/repository/browse/maven-snapshots/io/github/dj-raven/java-swing-pack/)
23+
from [Sonatype Central](https://central.sonatype.com/service/rest/repository/browse/maven-snapshots/io/github/dj-raven/swing-pack/)
2424

2525
``` xml
2626
<repositories>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.github.dj-raven</groupId>
88
<artifactId>java-swing-pack</artifactId>
9-
<version>1.0.0-SNAPSHOT</version>
9+
<version>1.0.0</version>
1010
<packaging>pom</packaging>
1111
<modules>
1212
<module>swing-pack</module>

swing-pack/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.github.dj-raven</groupId>
88
<artifactId>swing-pack</artifactId>
9-
<version>1.0.0-SNAPSHOT</version>
9+
<version>1.0.0</version>
1010

1111
<properties>
1212
<maven.compiler.source>8</maven.compiler.source>

testing/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.github.dj-raven</groupId>
88
<artifactId>java-swing-pack</artifactId>
9-
<version>1.0.0-SNAPSHOT</version>
9+
<version>1.0.0</version>
1010
</parent>
1111

1212
<artifactId>testing</artifactId>

testing/src/main/java/raven/swingpack/testing/BaseFrame.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
public abstract class BaseFrame extends JFrame {
1616

17-
public static final String TEST_VERSION = "1.0.0-SNAPSHOT";
17+
public static final String TEST_VERSION = "1.0.0";
1818

1919
public BaseFrame(String title) {
2020
setTitle(title);

0 commit comments

Comments
 (0)