Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/Teletha/Bee.git
Browse files Browse the repository at this point in the history
  • Loading branch information
teletha committed Dec 3, 2021
2 parents c1ba4bc + 90d17d0 commit 5068db5
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 14 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [0.17.0](https://www.github.com/teletha/bee/compare/v0.16.0...v0.17.0) (2021-12-03)


### Features

* Disabe trace message in eclipse platform. ([dfe8474](https://www.github.com/teletha/bee/commit/dfe84742485c76a6c78061480562466edb6ed7af))
* Merge CI/CD action. ([bce1ab7](https://www.github.com/teletha/bee/commit/bce1ab779cbf1dac33cd79277ab69d4b08a36c67))
* Throwing TaskCancel will skip the processing task. ([d0fd7bb](https://www.github.com/teletha/bee/commit/d0fd7bb5e8b471d5c0b1d2e9a48bbac081ce4ac2))


### Bug Fixes

* Format CUI message. ([e099830](https://www.github.com/teletha/bee/commit/e099830b3dc948394b6592aba5328243777be5a6))

## [0.16.0](https://www.github.com/teletha/bee/compare/v0.15.1...v0.16.0) (2021-11-30)


Expand Down
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.teletha</groupId>
<artifactId>bee</artifactId>
<version>0.16.0</version>
<version>0.17.0</version>
<packaging>jar</packaging>
<name>bee</name>
<description>Task based project builder for Java</description>
Expand Down Expand Up @@ -58,7 +58,7 @@
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-agent</artifactId>
<version>[1.12.2,)</version>
<version>[1.12.3,)</version>
<scope>provided</scope>
<exclusions>
<exclusion>
Expand Down Expand Up @@ -418,7 +418,7 @@
<dependency>
<groupId>com.github.teletha</groupId>
<artifactId>sinobu</artifactId>
<version>[2.9.4,)</version>
<version>[2.10.0,)</version>
<scope>compile</scope>
<exclusions>
<exclusion>
Expand Down Expand Up @@ -494,14 +494,14 @@
</issueManagement>
<developers>
<developer>
<name/>
<name>teletha</name>
<email/>
<url>https://github.com/apps/github-actions</url>
<url>https://github.com/teletha</url>
</developer>
<developer>
<name>teletha</name>
<name/>
<email/>
<url>https://github.com/teletha</url>
<url>https://github.com/apps/github-actions</url>
</developer>
</developers>
<build>
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/bee/Bee.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ public class Bee {
I.load(Bee.class);
ClassLoader.getSystemClassLoader().setDefaultAssertionStatus(true);

Locator.temporaryDirectory().create();

// detect version
if (Locator.locate("src/main/java/bee/Bee.java").isPresent()) {
version = Locator.file("version.txt").text().trim();
Expand Down
8 changes: 4 additions & 4 deletions src/main/java/bee/task/Ci.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ public void github() {
source bee install doc:site
else
version=$(curl -SsL https://git.io/stable-bee)
curl -SsL -o bee.jar https://jitpack.io/com/github/teletha/bee/${version}/bee-${version}.jar
java -javaagent:bee.jar -cp bee.jar bee.Bee install doc:site
curl -SsL -o bee-${version}.jar https://jitpack.io/com/github/teletha/bee/${version}/bee-${version}.jar
java -javaagent:bee-${version}.jar -cp bee-${version}.jar bee.Bee install doc:site
fi
- name: Deploy site
Expand Down Expand Up @@ -117,8 +117,8 @@ public void jitpack() {
source bee install pom
else
version=$(curl -SsL https://git.io/stable-bee)
curl -SsL -o bee.jar https://jitpack.io/com/github/teletha/bee/${version}/bee-${version}.jar
java -javaagent:bee.jar -cp bee.jar bee.Bee install pom
curl -SsL -o bee-${version}.jar https://jitpack.io/com/github/teletha/bee/${version}/bee-${version}.jar
java -javaagent:bee-${version}.jar -cp bee-${version}.jar bee.Bee install pom
fi
""", sourceVersion, sourceVersion));
}
Expand Down
2 changes: 1 addition & 1 deletion tool/latest-bee
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.16.0
0.17.0
2 changes: 1 addition & 1 deletion tool/stable-bee
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.16.0
0.17.0
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.16.0
0.17.0

0 comments on commit 5068db5

Please sign in to comment.