Skip to content

Commit

Permalink
1.0.7 darn US and UK spellings
Browse files Browse the repository at this point in the history
Updated trident to 1.0.7 for the US spelling of cancellable. Trident
seems stable enough now to be used in production. Have not encountered
any bugs while using in DynamicGUI testing. Code coverage of the project
thus far seems to show that the project is also stable enough.
  • Loading branch information
virustotalop committed Aug 25, 2018
1 parent fa39250 commit 0283b21
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![build artifacts](https://jitpack.io/v/clubobsidian/trident.svg)](https://jitpack.io/#clubobsidian/Trident)
[![codecov](https://codecov.io/gh/ClubObsidian/Trident/branch/master/graph/badge.svg)](https://codecov.io/gh/ClubObsidian/trident)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[Javadocs](https://jitpack.io/com/github/clubobsidian/trident/1.0.6/javadoc/)
[Javadocs](https://jitpack.io/com/github/clubobsidian/trident/1.0.7/javadoc/)

A dead simpile annotation event system that allows different event executor implementations.

Expand All @@ -25,7 +25,7 @@ repositories {
maven { url 'https://jitpack.io' }
}
compile 'com.github.clubobsidian:trident:1.0.6'
compile 'com.github.clubobsidian:trident:1.0.7'
```

### Maven
Expand All @@ -41,7 +41,7 @@ compile 'com.github.clubobsidian:trident:1.0.6'
<dependency>
<groupId>com.github.clubobsidian</groupId>
<artifactId>trident</artifactId>
<version>1.0.6</version>
<version>1.0.7</version>
</dependency>
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @author virustotalop
*/
public interface Cancellable {
public interface Cancelable {

/**
* Returns if the event is cancelled.
Expand Down
4 changes: 2 additions & 2 deletions src/test/java/TestCancellableEvent.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import com.clubobsidian.trident.Cancellable;
import com.clubobsidian.trident.Cancelable;

public class TestCancellableEvent extends TestEvent implements Cancellable {
public class TestCancellableEvent extends TestEvent implements Cancelable {

private boolean cancelled;

Expand Down

0 comments on commit 0283b21

Please sign in to comment.