Skip to content

Commit

Permalink
v3.1.0
Browse files Browse the repository at this point in the history
Signed-off-by: 7orivorian <7orivorian+github@gmail.com>
  • Loading branch information
7orivorian committed Oct 18, 2023
1 parent fac2a47 commit fe848b4
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 15 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Lightweight Java event library created and maintained by [7orivorian](https://gi
<dependency>
<groupId>com.github.7orivorian</groupId>
<artifactId>Wraith</artifactId>
<version>3.0.0</version>
<version>3.1.0</version>
</dependency>
```

Expand All @@ -51,13 +51,13 @@ repositories {

```gradle
dependencies {
implementation 'com.github.7orivorian:Wraith:3.0.0'
implementation 'com.github.7orivorian:Wraith:3.1.0'
}
```

### Other

Download a `.jar` file from [releases](https://github.com/7orivorian/Wraith/releases/tag/3.0.0)
Download a `.jar` file from [releases](https://github.com/7orivorian/Wraith/releases/tag/3.1.0)

# Building

Expand Down
12 changes: 6 additions & 6 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

## Supported Versions

| Version | Supported |
|---------|--------------------|
| 3.0.0 | :white_check_mark: |
| 2.0.1 | :white_check_mark: |
| 2.0.0 | :x: |
| < 2.0.0 | :x: |
| Version | Supported |
|-----------|--------------------|
| \>= 3.0.0 | :white_check_mark: |
| 2.0.1 | :white_check_mark: |
| 2.0.0 | :x: |
| < 2.0.0 | :x: |

## Reporting a Vulnerability

Expand Down
2 changes: 1 addition & 1 deletion examples/java/me/tori/example/expanded/ExampleEvent.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

/**
* Example event.
* <p>Last updated for version <b>3.0.0</b>
* <p>Last updated for version <b>3.1.0</b>
*
* @author <b><a href="https://github.com/7orivorian">7orivorian</a></b>
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

/**
* Example listener.
* <p>Last updated for version <b>3.0.0</b>
* <p>Last updated for version <b>3.1.0</b>
*
* @author <b><a href="https://github.com/7orivorian">7orivorian</a></b>
* @since <b>1.0.0</b>
Expand Down
2 changes: 1 addition & 1 deletion examples/java/me/tori/example/expanded/ExampleMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

/**
* Example program
* <p>Last updated for version <b>3.0.0</b>
* <p>Last updated for version <b>3.1.0</b>
*
* @author <b><a href="https://github.com/7orivorian">7orivorian</a></b>
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

/**
* Example subscriber.
* <p>Last updated for version <b>3.0.0</b>
* <p>Last updated for version <b>3.1.0</b>
*
* @author <b><a href="https://github.com/7orivorian">7orivorian</a></b>
* @since <b>1.0.0</b>
Expand Down
2 changes: 1 addition & 1 deletion examples/java/me/tori/example/simple/SimpleExample.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

/**
* One-class example
* <p>Last updated for version <b>3.0.0</b>
* <p>Last updated for version <b>3.1.0</b>
*
* @author <b><a href="https://github.com/7orivorian">7orivorian</a></b>
*/
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<scope>compile</scope>
</dependency>
</dependencies>
<version>3.0.0</version>
<version>3.1.0</version>

<properties>
<maven.compiler.source>17</maven.compiler.source>
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/me/tori/wraith/bus/EventBus.java
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,8 @@ public boolean isShutdown() {

/**
* @return the {@code id} of this event bus
* @author 7orivorian
* @since 3.1.0
*/
public int getId() {
return id;
Expand Down

0 comments on commit fe848b4

Please sign in to comment.