Skip to content

Commit

Permalink
chore(release): 3.0.0-rc.4 [skip ci]
Browse files Browse the repository at this point in the history
# [3.0.0-rc.4](v3.0.0-rc.3...v3.0.0-rc.4) (2023-06-02)

### Features

* Add docker support to babblebot ([cf8ab34](cf8ab34))
  • Loading branch information
semantic-release-bot committed Jun 2, 2023
1 parent cf8ab34 commit 99221d5
Show file tree
Hide file tree
Showing 22 changed files with 28 additions and 21 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# [3.0.0-rc.4](https://github.com/bendavies99/BabbleBot-Server/compare/v3.0.0-rc.3...v3.0.0-rc.4) (2023-06-02)


### Features

* Add docker support to babblebot ([cf8ab34](https://github.com/bendavies99/BabbleBot-Server/commit/cf8ab342cf1fb2ba2dada2314a80d8db4e59dba7))

# [3.0.0-rc.3](https://github.com/bendavies99/BabbleBot-Server/compare/v3.0.0-rc.2...v3.0.0-rc.3) (2023-06-02)


Expand Down
2 changes: 1 addition & 1 deletion api/src/main/java/net/bdavies/api/obj/DiscordColor.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* Discord Color Object
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.3
* @since 3.0.0-rc.4
*/
@Slf4j
@RequiredArgsConstructor
Expand Down
2 changes: 1 addition & 1 deletion api/src/main/java/net/bdavies/api/obj/message/Message.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* Message Object for the Command Context
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.3
* @since 3.0.0-rc.4
*/
@Slf4j
@Data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* Text Channel Object POJO
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.3
* @since 3.0.0-rc.4
*/
@Slf4j
@Data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* Guild Object POJO
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.3
* @since 3.0.0-rc.4
*/
@Slf4j
@Data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* An Object for the DiscordId
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.3
* @since 3.0.0-rc.4
*/
@Slf4j
@Data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* Discord Message Object for the Command Context
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.3
* @since 3.0.0-rc.4
*/
@Slf4j
@Data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* Author Object POJO
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.3
* @since 3.0.0-rc.4
*/
@Slf4j
@Data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* Author Object for an Embed Message
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.3
* @since 3.0.0-rc.4
*/
@Slf4j
@Data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* Field Object for an Embed Message
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.3
* @since 3.0.0-rc.4
*/
@Slf4j
@Data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* Footer Object for a Embed Message
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.3
* @since 3.0.0-rc.4
*/
@Slf4j
@Data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
* Embedded Message Dto as a Response
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.3
* @since 3.0.0-rc.4
*/
@Slf4j
@Data
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version = 3.0.0-rc.3
version = 3.0.0-rc.4
systemProp.org.gradle.internal.publish.checksums.insecure = true
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* DiscordCommandContext
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.3
* @since 3.0.0-rc.4
*/
@Slf4j
public class DiscordCommandContext extends CommandContext
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* Repository for Announcement Channels
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.3
* @since 3.0.0-rc.4
*/
@Repository
public interface AnnouncementChannelRepository extends JpaRepository<AnnouncementChannel, Long>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* Repository for the Ignore Entity
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.3
* @since 3.0.0-rc.4
*/
@Repository
public interface IgnoreRepository extends JpaRepository<Ignore, Long>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* DB Converter for a Discord Snowflake
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.3
* @since 3.0.0-rc.4
*/
@Slf4j
@Converter(autoApply = true)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* DB Converter for Text Channel
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.3
* @since 3.0.0-rc.4
*/
@Slf4j
@Converter(autoApply = true)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* DB Converter for Text Channel
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.3
* @since 3.0.0-rc.4
*/
@Slf4j
@Converter(autoApply = true)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* DB Converter for Text Channel
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.3
* @since 3.0.0-rc.4
*/
@Slf4j
@Converter(autoApply = true)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
* Factory for creating Discord object from Babblebot to Internal API
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.3
* @since 3.0.0-rc.4
*/
@Slf4j
@Component
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
* Factory to Create EmbedCreateSpec from Babblebot Object
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.3
* @since 3.0.0-rc.4
*/
@Slf4j
public class EmbedMessageFactory
Expand Down

0 comments on commit 99221d5

Please sign in to comment.