Skip to content

Commit

Permalink
chore: release v1.1.0-beta.3 (#49)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Aug 22, 2022
1 parent 162f30f commit f90764a
Show file tree
Hide file tree
Showing 9 changed files with 68 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{".":"1.0.0-beta.3","minecord-api":"1.0.0-beta.3","minecord-chat":"1.0.0-beta.3","minecord-cmds":"1.0.0-beta.3","minecord-presence":"1.0.0-beta.3"}
{".":"1.1.0-beta.3","minecord-api":"1.1.0-beta.3","minecord-chat":"1.1.0-beta.3","minecord-cmds":"1.0.1-beta.3","minecord-presence":"1.0.0-beta.3"}
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## [1.1.0-beta.3](https://github.com/axieum/minecord/compare/v1.0.0-beta.3...v1.1.0-beta.3) (2022-08-22)


### Features

* **api:** add 'i18n' config for translations ([#48](https://github.com/axieum/minecord/issues/48)) ([64b95c0](https://github.com/axieum/minecord/commit/64b95c018cf041392e96c2cbde111df5e34ae1e0))
* **api:** add `String` formatting to string templates ([4baa059](https://github.com/axieum/minecord/commit/4baa05986911815d36129f59e9a538ef9c3fed0f))
* **chat:** add `/me`, `/say` and `/tellraw` command messages (closes [#51](https://github.com/axieum/minecord/issues/51)) ([#53](https://github.com/axieum/minecord/issues/53)) ([7eea724](https://github.com/axieum/minecord/commit/7eea724576532bdedc601590cb7a1c1609e0a8b1))
* **chat:** add Discord reply messages (closes [#50](https://github.com/axieum/minecord/issues/50)) ([#57](https://github.com/axieum/minecord/issues/57)) ([4baa059](https://github.com/axieum/minecord/commit/4baa05986911815d36129f59e9a538ef9c3fed0f))
* **chat:** use new `fabric-message-api` events (closes [#32](https://github.com/axieum/minecord/issues/32)) ([#52](https://github.com/axieum/minecord/issues/52)) ([1859c69](https://github.com/axieum/minecord/commit/1859c695c02640e945fb7786b0a3f774d2de5cb7))


### Bug Fixes

* **api:** do not attempt to remap the language mixin ([791775b](https://github.com/axieum/minecord/commit/791775b14dc1565b636e45bf164905aac36de948))
* **chat:** correct `teleport` message placeholders in config ([7eea724](https://github.com/axieum/minecord/commit/7eea724576532bdedc601590cb7a1c1609e0a8b1))
* **chat:** correct Discord message placeholders in config ([4baa059](https://github.com/axieum/minecord/commit/4baa05986911815d36129f59e9a538ef9c3fed0f))
* **cmds:** commands that don't have an output should receive a default message (fixes [#54](https://github.com/axieum/minecord/issues/54)) ([162f30f](https://github.com/axieum/minecord/commit/162f30f95c79882a6137089bb1f545a9ad80d786))
* **cmds:** commands with multiple lines of output should edit the original embed ([162f30f](https://github.com/axieum/minecord/commit/162f30f95c79882a6137089bb1f545a9ad80d786))
* modded translation keys should be resolved (fixes [#45](https://github.com/axieum/minecord/issues/45)) ([64b95c0](https://github.com/axieum/minecord/commit/64b95c018cf041392e96c2cbde111df5e34ae1e0))

## [1.0.0-beta.3](https://github.com/axieum/minecord/compare/v1.0.0-beta.2...v1.0.0-beta.3) (2022-07-01)


Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ mod_id = minecord
mod_name = Minecord
mod_description = Bring your Minecraft world into your Discord guild
## {x-release-please-start-version}
mod_version = 1.0.0-beta.3
mod_version = 1.1.0-beta.3
## {x-release-please-end}

# Fabric
Expand Down
16 changes: 16 additions & 0 deletions minecord-api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [1.1.0-beta.3](https://github.com/axieum/minecord/compare/api-v1.0.0-beta.3...api-v1.1.0-beta.3) (2022-08-22)


### Features

* **api:** add 'i18n' config for translations ([#48](https://github.com/axieum/minecord/issues/48)) ([64b95c0](https://github.com/axieum/minecord/commit/64b95c018cf041392e96c2cbde111df5e34ae1e0))
* **api:** add `String` formatting to string templates ([4baa059](https://github.com/axieum/minecord/commit/4baa05986911815d36129f59e9a538ef9c3fed0f))
* **chat:** add Discord reply messages (closes [#50](https://github.com/axieum/minecord/issues/50)) ([#57](https://github.com/axieum/minecord/issues/57)) ([4baa059](https://github.com/axieum/minecord/commit/4baa05986911815d36129f59e9a538ef9c3fed0f))


### Bug Fixes

* **api:** do not attempt to remap the language mixin ([791775b](https://github.com/axieum/minecord/commit/791775b14dc1565b636e45bf164905aac36de948))
* **chat:** correct Discord message placeholders in config ([4baa059](https://github.com/axieum/minecord/commit/4baa05986911815d36129f59e9a538ef9c3fed0f))
* modded translation keys should be resolved (fixes [#45](https://github.com/axieum/minecord/issues/45)) ([64b95c0](https://github.com/axieum/minecord/commit/64b95c018cf041392e96c2cbde111df5e34ae1e0))

## [1.0.0-beta.3](https://github.com/axieum/minecord/compare/api-v1.0.0-beta.2...api-v1.0.0-beta.3) (2022-07-01)


Expand Down
2 changes: 1 addition & 1 deletion minecord-api/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ mod_id = minecord-api
mod_name = Minecord API
mod_description = Equips developers with the tools necessary to integrate their mods with Discord
## {x-release-please-start-version}
mod_version = 1.0.0-beta.3
mod_version = 1.1.0-beta.3
## {x-release-please-end}

# Dependencies
Expand Down
18 changes: 18 additions & 0 deletions minecord-chat/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## [1.1.0-beta.3](https://github.com/axieum/minecord/compare/chat-v1.0.0-beta.3...chat-v1.1.0-beta.3) (2022-08-22)


### Features

* **api:** add 'i18n' config for translations ([#48](https://github.com/axieum/minecord/issues/48)) ([64b95c0](https://github.com/axieum/minecord/commit/64b95c018cf041392e96c2cbde111df5e34ae1e0))
* **api:** add `String` formatting to string templates ([4baa059](https://github.com/axieum/minecord/commit/4baa05986911815d36129f59e9a538ef9c3fed0f))
* **chat:** add `/me`, `/say` and `/tellraw` command messages (closes [#51](https://github.com/axieum/minecord/issues/51)) ([#53](https://github.com/axieum/minecord/issues/53)) ([7eea724](https://github.com/axieum/minecord/commit/7eea724576532bdedc601590cb7a1c1609e0a8b1))
* **chat:** add Discord reply messages (closes [#50](https://github.com/axieum/minecord/issues/50)) ([#57](https://github.com/axieum/minecord/issues/57)) ([4baa059](https://github.com/axieum/minecord/commit/4baa05986911815d36129f59e9a538ef9c3fed0f))
* **chat:** use new `fabric-message-api` events (closes [#32](https://github.com/axieum/minecord/issues/32)) ([#52](https://github.com/axieum/minecord/issues/52)) ([1859c69](https://github.com/axieum/minecord/commit/1859c695c02640e945fb7786b0a3f774d2de5cb7))


### Bug Fixes

* **chat:** correct `teleport` message placeholders in config ([7eea724](https://github.com/axieum/minecord/commit/7eea724576532bdedc601590cb7a1c1609e0a8b1))
* **chat:** correct Discord message placeholders in config ([4baa059](https://github.com/axieum/minecord/commit/4baa05986911815d36129f59e9a538ef9c3fed0f))
* modded translation keys should be resolved (fixes [#45](https://github.com/axieum/minecord/issues/45)) ([64b95c0](https://github.com/axieum/minecord/commit/64b95c018cf041392e96c2cbde111df5e34ae1e0))

## [1.0.0-beta.3](https://github.com/axieum/minecord/compare/chat-v1.0.0-beta.2...chat-v1.0.0-beta.3) (2022-07-01)


Expand Down
2 changes: 1 addition & 1 deletion minecord-chat/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ mod_id = minecord-chat
mod_name = Minecord Chat
mod_description = Bridges chat-related events between Minecraft and Discord
## {x-release-please-start-version}
mod_version = 1.0.0-beta.3
mod_version = 1.1.0-beta.3
## {x-release-please-end}

# Dependencies
Expand Down
8 changes: 8 additions & 0 deletions minecord-cmds/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [1.0.1-beta.3](https://github.com/axieum/minecord/compare/cmds-v1.0.0-beta.3...cmds-v1.0.1-beta.3) (2022-08-22)


### Bug Fixes

* **cmds:** commands that don't have an output should receive a default message (fixes [#54](https://github.com/axieum/minecord/issues/54)) ([162f30f](https://github.com/axieum/minecord/commit/162f30f95c79882a6137089bb1f545a9ad80d786))
* **cmds:** commands with multiple lines of output should edit the original embed ([162f30f](https://github.com/axieum/minecord/commit/162f30f95c79882a6137089bb1f545a9ad80d786))

## [1.0.0-beta.3](https://github.com/axieum/minecord/compare/cmds-v1.0.0-beta.2...cmds-v1.0.0-beta.3) (2022-07-01)


Expand Down
2 changes: 1 addition & 1 deletion minecord-cmds/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ mod_id = minecord-cmds
mod_name = Minecord Commands
mod_description = Provides various commands to interact with your Minecraft server from Discord
## {x-release-please-start-version}
mod_version = 1.0.0-beta.3
mod_version = 1.0.1-beta.3
## {x-release-please-end}

0 comments on commit f90764a

Please sign in to comment.