Skip to content

Commit 73b58be

Browse files
authored
0.8.0 (#53)
1 parent 5a86e94 commit 73b58be

7 files changed

Lines changed: 11 additions & 11 deletions

File tree

README.md

Lines changed: 5 additions & 5 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.7.0</version>
34+
<version>0.8.0</version>
3535
</dependency>
3636
</dependencies>
3737
```
@@ -43,7 +43,7 @@ repositories {
4343
mavenCentral()
4444
}
4545
dependencies {
46-
implementation 'io.github.sttk:sabi:0.7.0'
46+
implementation 'io.github.sttk:sabi:0.8.0'
4747
}
4848
```
4949

@@ -215,9 +215,9 @@ 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.7.0-276bdd.svg
219-
[mvn-url]: https://central.sonatype.com/artifact/io.github.sttk/sabi/0.7.0
220-
[mvnrepo-img]: https://img.shields.io/badge/mvn_repository-0.7.0-498df4.svg
218+
[mvn-img]: https://img.shields.io/badge/maven_central-0.8.0-276bdd.svg
219+
[mvn-url]: https://central.sonatype.com/artifact/io.github.sttk/sabi/0.8.0
220+
[mvnrepo-img]: https://img.shields.io/badge/mvn_repository-0.8.0-498df4.svg
221221
[mvnrepo-url]: https://mvnrepository.com/artifact/io.github.sttk/sabi
222222
[io-img]: https://img.shields.io/badge/github.io-Javadoc-4d7a97.svg
223223
[io-url]: https://sttk.github.io/sabi-java/

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.sttk</groupId>
88
<artifactId>sabi</artifactId>
9-
<version>0.7.0</version>
9+
<version>0.8.0</version>
1010
<packaging>jar</packaging>
1111

1212
<name>sabi</name>

src/main/java/com/github/sttk/sabi/internal/DataConnContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* DataConnContainer.java
3-
* Copyright (C) 2025 Takayuki Sato. All Rights Reserved.
3+
* Copyright (C) 2025-2026 Takayuki Sato. All Rights Reserved.
44
*/
55
package com.github.sttk.sabi.internal;
66

src/main/java/com/github/sttk/sabi/internal/DataConnList.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* DataConnList.java
3-
* Copyright (C) 2025 Takayuki Sato. All Rights Reserved.
3+
* Copyright (C) 2025-2026 Takayuki Sato. All Rights Reserved.
44
*/
55
package com.github.sttk.sabi.internal;
66

src/main/java/com/github/sttk/sabi/internal/DataSrcContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* DataSrcContainer.java
3-
* Copyright (C) 2025 Takayuki Sato. All Rights Reserved.
3+
* Copyright (C) 2025-2026 Takayuki Sato. All Rights Reserved.
44
*/
55
package com.github.sttk.sabi.internal;
66

src/main/java/com/github/sttk/sabi/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
/**
77
* Provides classes and interfaces of sabi framework.
88
*
9-
* @version 0.7
9+
* @version 0.8
1010
*/
1111
package com.github.sttk.sabi;

src/main/java/module-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.7
12+
* @version 0.8
1313
*/
1414
module com.github.sttk.sabi {
1515
exports com.github.sttk.sabi;

0 commit comments

Comments
 (0)