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
10 changes: 5 additions & 5 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.7.0</version>
<version>0.8.0</version>
</dependency>
</dependencies>
```
Expand All @@ -43,7 +43,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'io.github.sttk:sabi:0.7.0'
implementation 'io.github.sttk:sabi:0.8.0'
}
```

Expand Down Expand Up @@ -215,9 +215,9 @@ 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.7.0-276bdd.svg
[mvn-url]: https://central.sonatype.com/artifact/io.github.sttk/sabi/0.7.0
[mvnrepo-img]: https://img.shields.io/badge/mvn_repository-0.7.0-498df4.svg
[mvn-img]: https://img.shields.io/badge/maven_central-0.8.0-276bdd.svg
[mvn-url]: https://central.sonatype.com/artifact/io.github.sttk/sabi/0.8.0
[mvnrepo-img]: https://img.shields.io/badge/mvn_repository-0.8.0-498df4.svg
[mvnrepo-url]: https://mvnrepository.com/artifact/io.github.sttk/sabi
[io-img]: https://img.shields.io/badge/github.io-Javadoc-4d7a97.svg
[io-url]: https://sttk.github.io/sabi-java/
Expand Down
2 changes: 1 addition & 1 deletion 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.7.0</version>
<version>0.8.0</version>
<packaging>jar</packaging>

<name>sabi</name>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* DataConnContainer.java
* Copyright (C) 2025 Takayuki Sato. All Rights Reserved.
* Copyright (C) 2025-2026 Takayuki Sato. All Rights Reserved.
*/
package com.github.sttk.sabi.internal;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* DataConnList.java
* Copyright (C) 2025 Takayuki Sato. All Rights Reserved.
* Copyright (C) 2025-2026 Takayuki Sato. All Rights Reserved.
*/
package com.github.sttk.sabi.internal;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* DataSrcContainer.java
* Copyright (C) 2025 Takayuki Sato. All Rights Reserved.
* Copyright (C) 2025-2026 Takayuki Sato. All Rights Reserved.
*/
package com.github.sttk.sabi.internal;

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/github/sttk/sabi/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
/**
* Provides classes and interfaces of sabi framework.
*
* @version 0.7
* @version 0.8
*/
package com.github.sttk.sabi;
2 changes: 1 addition & 1 deletion src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -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.7
* @version 0.8
*/
module com.github.sttk.sabi {
exports com.github.sttk.sabi;
Expand Down