Skip to content

Commit

Permalink
chore(release): 3.0.0-rc.24 [skip ci]
Browse files Browse the repository at this point in the history
# [3.0.0-rc.24](v3.0.0-rc.23...v3.0.0-rc.24) (2023-07-09)

### Bug Fixes

* release branch config ([bd19531](bd19531))
  • Loading branch information
semantic-release-bot committed Jul 9, 2023
1 parent bd19531 commit e983922
Show file tree
Hide file tree
Showing 69 changed files with 77 additions and 70 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.24](https://github.com/babblebot-server/server/compare/v3.0.0-rc.23...v3.0.0-rc.24) (2023-07-09)


### Bug Fixes

* release branch config ([bd19531](https://github.com/babblebot-server/server/commit/bd19531d240a2e73f272cd7c77460a063cf355f4))

# [3.0.0-rc.23](https://github.com/bendavies99/BabbleBot-Server/compare/v3.0.0-rc.22...v3.0.0-rc.23) (2023-07-08)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,23 +44,23 @@ public interface ICommandResponse
* Respond with a {@link EmbedMessage}
*
* @param embed the embed message to send
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
boolean sendEmbed(EmbedMessage embed);

/**
* Respond with a {@link EmbedMessage} using a {@link Mono}
*
* @param embed the embed message to send
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
boolean sendEmbed(Mono<EmbedMessage> embed);

/**
* Respond with a {@link EmbedMessage} using a {@link Flux}
*
* @param embed the embed message to send
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
boolean sendEmbed(Flux<EmbedMessage> embed);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* Connect Queue Metadata
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* Connect Queue Interface
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
public interface IConnectQueue<T extends Serializable>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* Connect Queue Interface
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
public interface IConnectQueueResponse<T extends Serializable, R extends Serializable> extends
IConnectQueue<T>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* Announcement Service to send announcements through the announcement channel for important updates
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
@Service
public interface IAnnouncementService
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
* Sending spec for a DiscordMessage
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
@Data
@Builder(toBuilder = true)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
* Service for sending messages through discord to a channel or a private message etc
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
@Service
public interface IDiscordMessagingService
Expand Down
2 changes: 1 addition & 1 deletion api/src/main/java/net/babblebot/api/dto/Response.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* Response Object
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
@Slf4j
@Data
Expand Down
2 changes: 1 addition & 1 deletion api/src/main/java/net/babblebot/api/dto/ResponseBag.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
* Generic Response for a Rest Request
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
@Slf4j
@Data
Expand Down
2 changes: 1 addition & 1 deletion api/src/main/java/net/babblebot/api/events/IEvent.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* Babblebot Event interface
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
public interface IEvent extends Serializable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* Babblebot Event Dispatcher
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
@Component
public interface IEventDispatcher
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* An Event that will trigger when the {@link IPluginContainer} gets a new plugin
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
@Slf4j
@RequiredArgsConstructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* plugin
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
@Slf4j
@RequiredArgsConstructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* Event will fire on Babblebot shutdown
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
@Slf4j
@Data
Expand Down
2 changes: 1 addition & 1 deletion api/src/main/java/net/babblebot/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.23
* @since 3.0.0-rc.24
*/
@Slf4j
@RequiredArgsConstructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* Message Object for the Command Context
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
@Slf4j
@Data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* Text Channel Object POJO
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
@Slf4j
@Data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* Guild Object POJO
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
@Slf4j
@Data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
* An Object for the DiscordId
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
@Slf4j
@Data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
* Discord Message Object for the Command Context
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
@Slf4j
@Data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* Author Object POJO
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
@Slf4j
@Data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* Message object for sending tts messages
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
@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.23
* @since 3.0.0-rc.24
*/
@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.23
* @since 3.0.0-rc.24
*/
@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.23
* @since 3.0.0-rc.24
*/
@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.23
* @since 3.0.0-rc.24
*/
@Slf4j
@Data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* Plugin model Interface
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
public interface IPluginModel extends Serializable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* Plugin Permission Container
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
@Slf4j
public class PluginPermissionContainer extends ArrayList<EPluginPermission>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* Plugin type enum
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
public enum PluginType
{
Expand Down
2 changes: 1 addition & 1 deletion api/src/main/java/net/babblebot/api/util/FunctionEx.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* A Function that is Exceptional
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
@FunctionalInterface
public interface FunctionEx<I, R>
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.23
version = 3.0.0-rc.24
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.23
* @since 3.0.0-rc.24
*/
@Slf4j
public class DiscordCommandContext extends AbstractCommandContext
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* from a command will then rendered to the output for discord it will render it on the discord channel
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
public interface CommandRenderer extends Serializable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
* Discord Command Renderer that will send the response to the channel
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
@Slf4j
@RequiredArgsConstructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
* Renderer for an Interaction event from Discord
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
@Slf4j
@RequiredArgsConstructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
* Base Response Class
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
@Slf4j
@Data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
* Configuration for the Config Object
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
@Slf4j
@Configuration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* Config Repository
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
@Repository
public interface ConfigRepository extends JpaRepository<Config, Long>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* Configuration Properties for Discord
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
@Slf4j
@ConfigurationProperties(prefix = "discord")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* Connect Client that will handle receiving messages
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
public interface ConnectClient
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* Configuration Properties for Babblebot Connect
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.23
* @since 3.0.0-rc.24
*/
@Slf4j
@ConfigurationProperties(prefix = "connect")
Expand Down
Loading

0 comments on commit e983922

Please sign in to comment.