Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ The examples of declaring that repository and the dependency on this package in
<dependency>
<groupId>io.github.sttk</groupId>
<artifactId>sabi</artifactId>
<version>0.6.0</version>
<version>0.7.0</version>
</dependency>
</dependencies>
```
Expand All @@ -43,7 +43,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'io.github.sttk:sabi:0.6.0'
implementation 'io.github.sttk:sabi:0.7.0'
}
```

Expand Down Expand Up @@ -201,22 +201,22 @@ This framework supports JDK 21 or later.

### Actually checked JDK versions:

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

## License

Copyright (C) 2022-2025 Takayuki Sato
Copyright (C) 2022-2026 Takayuki Sato

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


[repo-url]: https://github.com/sttk/sabi-java
[mvn-img]: https://img.shields.io/badge/maven_central-0.6.0-276bdd.svg
[mvn-url]: https://central.sonatype.com/artifact/io.github.sttk/sabi/0.6.0
[mvn-img]: https://img.shields.io/badge/maven_central-0.7.0-276bdd.svg
[mvn-url]: https://central.sonatype.com/artifact/io.github.sttk/sabi/0.7.0
[io-img]: https://img.shields.io/badge/github.io-Javadoc-4d7a97.svg
[io-url]: https://sttk.github.io/sabi-java/
[ci-img]: https://github.com/sttk/sabi-java/actions/workflows/java-ci.yml/badge.svg?branch=main
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.github.sttk</groupId>
<artifactId>sabi</artifactId>
<version>0.6.0</version>
<version>0.7.0</version>
<packaging>jar</packaging>

<name>sabi</name>
Expand Down Expand Up @@ -99,7 +99,7 @@
<encoding>UTF-8</encoding>
<charset>UTF-8</charset>
<docencoding>UTF-8</docencoding>
<bottom><![CDATA[Copyright 2022-2025 Takayuki Sato. All Rights Reserved.]]></bottom>
<bottom><![CDATA[Copyright 2022-2026 Takayuki Sato. All Rights Reserved.]]></bottom>
<outputDirectory>${project.reporting.outputDirectory}</outputDirectory>
</configuration>
<executions>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/github/sttk/sabi/package-info.java
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/*
* package-info.java
* Copyright (C) 2022-2025 Takayuki Sato. All Rights Reserved.
* Copyright (C) 2022-2026 Takayuki Sato. All Rights Reserved.
*/

/**
* Provides classes and interfaces of sabi framework.
*
* @version 0.6
* @version 0.7
*/
package com.github.sttk.sabi;
4 changes: 2 additions & 2 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* module-info.java
* Copyright (C) 2022-2025 Takayuki Sato. All Rights Reserved.
* Copyright (C) 2022-2026 Takayuki Sato. All Rights Reserved.
*/

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