Skip to content

Commit

Permalink
Prepare 1.0.6 release
Browse files Browse the repository at this point in the history
Updated build info, upper case Trident to lower case.
  • Loading branch information
virustotalop committed Aug 23, 2018
1 parent 0eac737 commit 730af75
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
![trident](/img/trident_logo.png)

[![Build Status](https://api.travis-ci.org/ClubObsidian/Trident.svg?branch=master)](https://travis-ci.org/ClubObsidian/Trident)
[![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)
[![Build Status](https://api.travis-ci.org/ClubObsidian/trident.svg?branch=master)](https://travis-ci.org/ClubObsidian/trident)
[![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.5/javadoc/)
[Javadocs](https://jitpack.io/com/github/clubobsidian/trident/1.0.6/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.5'
compile 'com.github.clubobsidian:trident:1.0.6'
```

### Maven
Expand All @@ -40,8 +40,8 @@ compile 'com.github.clubobsidian:Trident:1.0.5'
<dependency>
<groupId>com.github.clubobsidian</groupId>
<artifactId>Trident</artifactId>
<version>1.0.5</version>
<artifactId>trident</artifactId>
<version>1.0.6</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ repositories {
}

shadowJar {
baseName = 'Trident'
baseName = 'trident'
classifier = null
version = null
relocate 'javassist', 'com.clubobsidian.trident.javassist'
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/clubobsidian/trident/Cancellable.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ public interface Cancellable {

public boolean isCancelled();
public void setCancelled(boolean cancel);
}
}

0 comments on commit 730af75

Please sign in to comment.