Skip to content

Commit c4ac201

Browse files
committed
0.5.0
1 parent 1911928 commit c4ac201

4 files changed

Lines changed: 18 additions & 5 deletions

File tree

README.md

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

@@ -215,8 +215,8 @@ 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.4.0-276bdd.svg
219-
[mvn-url]: https://mvnrepository.com/artifact/io.github.sttk/sabi/0.4.0
218+
[mvn-img]: https://img.shields.io/badge/maven_central-0.5.0-276bdd.svg
219+
[mvn-url]: https://mvnrepository.com/artifact/io.github.sttk/sabi/0.5.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: 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.4.0</version>
9+
<version>0.5.0</version>
1010
<packaging>jar</packaging>
1111

1212
<name>sabi</name>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/*
2+
* package-info class.
3+
* Copyright (C) 2022-2025 Takayuki Sato. All Rights Reserved.
4+
*/
5+
6+
/**
7+
* Provides classes and interfaces of sabi framework.
8+
*
9+
* @version 0.5
10+
*/
11+
package com.github.sttk.sabi;

src/main/java/module-info.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
*
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.
11+
*
12+
* @version 0.5
1113
*/
1214
module com.github.sttk.sabi {
1315
exports com.github.sttk.sabi;

0 commit comments

Comments
 (0)