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 Sep 12, 2024
2 parents de86898 + 016ee33 commit 9abbc71
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.51.1](https://github.com/teletha/bee/compare/v0.51.0...v0.51.1) (2024-09-11)


### Bug Fixes

* installer creats compact jar ([a72d93d](https://github.com/teletha/bee/commit/a72d93ddbc6067a2482512b0a69b8a51c20b8dbf))

## [0.51.0](https://github.com/teletha/bee/compare/v0.50.0...v0.51.0) (2024-09-11)


Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Add it into in the dependencies element like so:
<dependency>
<groupId>com.github.teletha</groupId>
<artifactId>bee</artifactId>
<version>0.51.0</version>
<version>0.51.1</version>
</dependency>
```
#### [Gradle](https://gradle.org/)
Expand All @@ -66,7 +66,7 @@ repositories {
Add it into the dependencies section like so:
```gradle
dependencies {
implementation 'com.github.teletha:bee:0.51.0'
implementation 'com.github.teletha:bee:0.51.1'
}
```
#### [SBT](https://www.scala-sbt.org/)
Expand All @@ -76,7 +76,7 @@ resolvers += "jitpack" at "https://jitpack.io"
```
Add it into the libraryDependencies section like so:
```scala
libraryDependencies += "com.github.teletha" % "bee" % "0.51.0"
libraryDependencies += "com.github.teletha" % "bee" % "0.51.1"
```
#### [Leiningen](https://leiningen.org/)
Add JitPack repository at the end of repositories in your project.clj:
Expand All @@ -85,12 +85,12 @@ Add JitPack repository at the end of repositories in your project.clj:
```
Add it into the dependencies section like so:
```clj
:dependencies [[com.github.teletha/bee "0.51.0"]]
:dependencies [[com.github.teletha/bee "0.51.1"]]
```
#### [Bee](https://teletha.github.io/bee)
Add it into your project definition class like so:
```java
require("com.github.teletha", "bee", "0.51.0");
require("com.github.teletha", "bee", "0.51.1");
```
<p align="right"><a href="#top">back to top</a></p>

Expand Down
2 changes: 1 addition & 1 deletion 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.51.0</version>
<version>0.51.1</version>
<packaging>jar</packaging>
<name>bee</name>
<description>Bee is an open source build automation tool that focuses on conventions, type safety and performance.
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.51.0
0.51.1

0 comments on commit 9abbc71

Please sign in to comment.