diff --git a/.release-please-manifest.json b/.release-please-manifest.json
index 9f0f556d..dd96beb3 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1,5 +1,5 @@
 {
-  "server": "1.1.0",
-  "client": "1.1.0",
+  "server": "1.2.0",
+  "client": "1.1.1",
   "docs": "1.1.0"
 }
\ No newline at end of file
diff --git a/client/CHANGELOG.md b/client/CHANGELOG.md
index 40bb292b..acea33d1 100644
--- a/client/CHANGELOG.md
+++ b/client/CHANGELOG.md
@@ -1,5 +1,12 @@
 # Changelog
 
+## [1.1.1](https://github.com/discordplace/discord.place/compare/client@v1.1.0...client@v1.1.1) (2024-10-23)
+
+
+### Bug Fixes
+
+* **client/markdown:** allow line breaks in rendered markdown content ([#95](https://github.com/discordplace/discord.place/issues/95)) ([21ec323](https://github.com/discordplace/discord.place/commit/21ec3237f3091dbba8a5435a6eab373caf923fc9))
+
 ## [1.1.0](https://github.com/discordplace/discord.place/compare/client-v1.0.0...client@v1.1.0) (2024-10-22)
 
 
diff --git a/client/package.json b/client/package.json
index 5caba524..1f6a16d5 100644
--- a/client/package.json
+++ b/client/package.json
@@ -2,7 +2,7 @@
   "$schema": "https://json.schemastore.org/package.json",
   "name": "client",
   "private": true,
-  "version": "1.1.0",
+  "version": "1.1.1",
   "scripts": {
     "dev": "next dev --turbo -p 3000",
     "build": "next build",
diff --git a/server/CHANGELOG.md b/server/CHANGELOG.md
index ca15e5ff..a4ea9e7b 100644
--- a/server/CHANGELOG.md
+++ b/server/CHANGELOG.md
@@ -1,5 +1,17 @@
 # Changelog
 
+## [1.2.0](https://github.com/discordplace/discord.place/compare/server@v1.1.0...server@v1.2.0) (2024-10-23)
+
+
+### Features
+
+* add build and deploy workflow for client, server, and docs ([#91](https://github.com/discordplace/discord.place/issues/91)) ([74e68c4](https://github.com/discordplace/discord.place/commit/74e68c410d905a6f5ab08625eab9737adc56a477))
+
+
+### Bug Fixes
+
+* remove redundant permission from config ([#93](https://github.com/discordplace/discord.place/issues/93)) ([11e57cc](https://github.com/discordplace/discord.place/commit/11e57cce31dc9024b627e792272c3f4bd4b543a6))
+
 ## [1.1.0](https://github.com/discordplace/discord.place/compare/server-v1.0.0...server@v1.1.0) (2024-10-22)
 
 
diff --git a/server/package.json b/server/package.json
index 8186d724..1ed993e7 100644
--- a/server/package.json
+++ b/server/package.json
@@ -2,7 +2,7 @@
   "$schema": "https://json.schemastore.org/package.json",
   "name": "server",
   "private": true,
-  "version": "1.1.0",
+  "version": "1.2.0",
   "main": "index.js",
   "scripts": {
     "dev": "cross-env NODE_ENV=development node -r dotenv/config index.js",