Skip to content

Commit 740dbe1

Browse files
authored
0.7.0 (#47)
1 parent c88a96e commit 740dbe1

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The examples of declaring that repository and the dependency on this package in
3131
<dependency>
3232
<groupId>io.github.sttk</groupId>
3333
<artifactId>sabi</artifactId>
34-
<version>0.6.0</version>
34+
<version>0.7.0</version>
3535
</dependency>
3636
</dependencies>
3737
```
@@ -43,7 +43,7 @@ repositories {
4343
mavenCentral()
4444
}
4545
dependencies {
46-
implementation 'io.github.sttk:sabi:0.6.0'
46+
implementation 'io.github.sttk:sabi:0.7.0'
4747
}
4848
```
4949

@@ -201,22 +201,22 @@ This framework supports JDK 21 or later.
201201

202202
### Actually checked JDK versions:
203203

204-
- Oracle GraalVM 21.0.7+8.1
205-
- Oracle GraalVM 22.0.2+9.1
206-
- Oracle GraalVM 23.0.2+7.1
207-
- Oracle GraalVM 24.0.1+9.1
204+
- Oracle GraalVM 25.0.1+8.1 (build 25.0.1+8-LTS-jvmci-b01)
205+
- Oracle GraalVM 24.0.2+11.1 (build 24.0.2+11-jvmci-b01)
206+
- Oracle GraalVM 23.0.2+7.1 (build 23.0.2+7-jvmci-b01)
207+
- Oracle GraalVM 21.0.9+7.1 (build 21.0.9+7-LTS-jvmci-23.1-b79)
208208

209209
## License
210210

211-
Copyright (C) 2022-2025 Takayuki Sato
211+
Copyright (C) 2022-2026 Takayuki Sato
212212

213213
This program is free software under MIT License.<br>
214214
See the file LICENSE in this distribution for more details.
215215

216216

217217
[repo-url]: https://github.com/sttk/sabi-java
218-
[mvn-img]: https://img.shields.io/badge/maven_central-0.6.0-276bdd.svg
219-
[mvn-url]: https://central.sonatype.com/artifact/io.github.sttk/sabi/0.6.0
218+
[mvn-img]: https://img.shields.io/badge/maven_central-0.7.0-276bdd.svg
219+
[mvn-url]: https://central.sonatype.com/artifact/io.github.sttk/sabi/0.7.0
220220
[io-img]: https://img.shields.io/badge/github.io-Javadoc-4d7a97.svg
221221
[io-url]: https://sttk.github.io/sabi-java/
222222
[ci-img]: https://github.com/sttk/sabi-java/actions/workflows/java-ci.yml/badge.svg?branch=main

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.github.sttk</groupId>
88
<artifactId>sabi</artifactId>
9-
<version>0.6.0</version>
9+
<version>0.7.0</version>
1010
<packaging>jar</packaging>
1111

1212
<name>sabi</name>
@@ -99,7 +99,7 @@
9999
<encoding>UTF-8</encoding>
100100
<charset>UTF-8</charset>
101101
<docencoding>UTF-8</docencoding>
102-
<bottom><![CDATA[Copyright 2022-2025 Takayuki Sato. All Rights Reserved.]]></bottom>
102+
<bottom><![CDATA[Copyright 2022-2026 Takayuki Sato. All Rights Reserved.]]></bottom>
103103
<outputDirectory>${project.reporting.outputDirectory}</outputDirectory>
104104
</configuration>
105105
<executions>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*
22
* package-info.java
3-
* Copyright (C) 2022-2025 Takayuki Sato. All Rights Reserved.
3+
* Copyright (C) 2022-2026 Takayuki Sato. All Rights Reserved.
44
*/
55

66
/**
77
* Provides classes and interfaces of sabi framework.
88
*
9-
* @version 0.6
9+
* @version 0.7
1010
*/
1111
package com.github.sttk.sabi;

src/main/java/module-info.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* module-info.java
3-
* Copyright (C) 2022-2025 Takayuki Sato. All Rights Reserved.
3+
* Copyright (C) 2022-2026 Takayuki Sato. All Rights Reserved.
44
*/
55

66
/**
@@ -9,7 +9,7 @@
99
* <p>This module includes the interfaces that abstracts data accesses to the external data stores
1010
* and the classes to execute a logic function with or without transaction operations.
1111
*
12-
* @version 0.6
12+
* @version 0.7
1313
*/
1414
module com.github.sttk.sabi {
1515
exports com.github.sttk.sabi;

0 commit comments

Comments
 (0)