Skip to content

Commit

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

### Bug Fixes

* Base packages names ([9647f7f](9647f7f))
  • Loading branch information
semantic-release-bot committed Jul 11, 2023
1 parent 9647f7f commit 8ff03c7
Show file tree
Hide file tree
Showing 70 changed files with 78 additions and 71 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,10 @@
# [3.0.0-rc.25](https://github.com/babblebot-server/server/compare/v3.0.0-rc.24...v3.0.0-rc.25) (2023-07-11)


### Bug Fixes

* Base packages names ([9647f7f](https://github.com/babblebot-server/server/commit/9647f7f18383265265bf6842fd26f7cd9cc6ffc0))

# [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)


Expand Down
Expand Up @@ -30,7 +30,7 @@
* context
*
* @author me@bdavies.net (Ben Davies)
* @since __RELEASE_VERSION__
* @since 3.0.0-rc.25
*/
public enum CommandType
{
Expand Down
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.24
* @since 3.0.0-rc.25
*/
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.24
* @since 3.0.0-rc.25
*/
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.24
* @since 3.0.0-rc.25
*/
boolean sendEmbed(Flux<EmbedMessage> embed);

Expand Down
Expand Up @@ -34,7 +34,7 @@
* Connect Queue Metadata
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
Expand Down
Expand Up @@ -32,7 +32,7 @@
* Connect Queue Interface
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
public interface IConnectQueue<T extends Serializable>
{
Expand Down
Expand Up @@ -31,7 +31,7 @@
* Connect Queue Interface
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
public interface IConnectQueueResponse<T extends Serializable, R extends Serializable> extends
IConnectQueue<T>
Expand Down
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.24
* @since 3.0.0-rc.25
*/
@Service
public interface IAnnouncementService
Expand Down
Expand Up @@ -38,7 +38,7 @@
* Sending spec for a DiscordMessage
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
@Data
@Builder(toBuilder = true)
Expand Down
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.24
* @since 3.0.0-rc.25
*/
@Service
public interface IDiscordMessagingService
Expand Down
2 changes: 1 addition & 1 deletion api/src/main/java/net/babblebot/api/dto/Response.java
Expand Up @@ -36,7 +36,7 @@
* Response Object
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
@Slf4j
@Data
Expand Down
2 changes: 1 addition & 1 deletion api/src/main/java/net/babblebot/api/dto/ResponseBag.java
Expand Up @@ -38,7 +38,7 @@
* Generic Response for a Rest Request
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
@Slf4j
@Data
Expand Down
2 changes: 1 addition & 1 deletion api/src/main/java/net/babblebot/api/events/IEvent.java
Expand Up @@ -31,7 +31,7 @@
* Babblebot Event interface
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
public interface IEvent extends Serializable
{
Expand Down
Expand Up @@ -32,7 +32,7 @@
* Babblebot Event Dispatcher
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
@Component
public interface IEventDispatcher
Expand Down
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.24
* @since 3.0.0-rc.25
*/
@Slf4j
@RequiredArgsConstructor
Expand Down
Expand Up @@ -37,7 +37,7 @@
* plugin
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
@Slf4j
@RequiredArgsConstructor
Expand Down
Expand Up @@ -34,7 +34,7 @@
* Event will fire on Babblebot shutdown
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
@Slf4j
@Data
Expand Down
2 changes: 1 addition & 1 deletion api/src/main/java/net/babblebot/api/obj/DiscordColor.java
Expand Up @@ -32,7 +32,7 @@
* Discord Color Object
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
@Slf4j
@RequiredArgsConstructor
Expand Down
Expand Up @@ -37,7 +37,7 @@
* Message Object for the Command Context
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -37,7 +37,7 @@
* Text Channel Object POJO
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -37,7 +37,7 @@
* Guild Object POJO
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -38,7 +38,7 @@
* An Object for the DiscordId
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -40,7 +40,7 @@
* Discord Message Object for the Command Context
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -37,7 +37,7 @@
* Author Object POJO
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -32,7 +32,7 @@
* Message object for sending tts messages
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -34,7 +34,7 @@
* Author Object for an Embed Message
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -34,7 +34,7 @@
* Field Object for an Embed Message
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -34,7 +34,7 @@
* Footer Object for a Embed Message
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -40,7 +40,7 @@
* Embedded Message Dto as a Response
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -31,7 +31,7 @@
* Plugin model Interface
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
public interface IPluginModel extends Serializable
{
Expand Down
Expand Up @@ -35,7 +35,7 @@
* Plugin Permission Container
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
@Slf4j
public class PluginPermissionContainer extends ArrayList<EPluginPermission>
Expand Down
Expand Up @@ -29,7 +29,7 @@
* Plugin type enum
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
public enum PluginType
{
Expand Down
2 changes: 1 addition & 1 deletion api/src/main/java/net/babblebot/api/util/FunctionEx.java
Expand Up @@ -29,7 +29,7 @@
* A Function that is Exceptional
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
@FunctionalInterface
public interface FunctionEx<I, R>
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
@@ -1,2 +1,2 @@
version = 3.0.0-rc.24
version = 3.0.0-rc.25
systemProp.org.gradle.internal.publish.checksums.insecure = true
Expand Up @@ -36,7 +36,7 @@
* DiscordCommandContext
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
@Slf4j
public class DiscordCommandContext extends AbstractCommandContext
Expand Down
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.24
* @since 3.0.0-rc.25
*/
public interface CommandRenderer extends Serializable
{
Expand Down
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.24
* @since 3.0.0-rc.25
*/
@Slf4j
@RequiredArgsConstructor
Expand Down
Expand Up @@ -45,7 +45,7 @@
* Renderer for an Interaction event from Discord
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
@Slf4j
@RequiredArgsConstructor
Expand Down
Expand Up @@ -38,7 +38,7 @@
* Base Response Class
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
@Slf4j
@Data
Expand Down
Expand Up @@ -39,7 +39,7 @@
* Configuration for the Config Object
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
@Slf4j
@Configuration
Expand Down
Expand Up @@ -32,7 +32,7 @@
* Config Repository
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
@Repository
public interface ConfigRepository extends JpaRepository<Config, Long>
Expand Down
Expand Up @@ -35,7 +35,7 @@
* Configuration Properties for Discord
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
@Slf4j
@ConfigurationProperties(prefix = "discord")
Expand Down
Expand Up @@ -34,7 +34,7 @@
* Connect Client that will handle receiving messages
*
* @author me@bdavies.net (Ben Davies)
* @since 3.0.0-rc.24
* @since 3.0.0-rc.25
*/
public interface ConnectClient
{
Expand Down

0 comments on commit 8ff03c7

Please sign in to comment.