Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
8 changes: 4 additions & 4 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.4.0</version>
<version>0.5.0</version>
</dependency>
</dependencies>
```
Expand All @@ -43,7 +43,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'io.github.sttk:sabi:0.4.0'
implementation 'io.github.sttk:sabi:0.5.0'
}
```

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

<name>sabi</name>
Expand Down
11 changes: 11 additions & 0 deletions src/main/java/com/github/sttk/sabi/package-info.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/*
* package-info class.
* Copyright (C) 2022-2025 Takayuki Sato. All Rights Reserved.
*/

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