diff --git a/CHANGELOG.md b/CHANGELOG.md
index bbd22ccc..5247ce63 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog
+## `1.1.1` (2025-06-27)
+
+### Fixes
+
+- frontend: Fix login on press enter
+- backend: Fix error 405 on update dynamic pages
+
## `1.1.0` (2025-05-22)
### Features
diff --git a/VERSION b/VERSION
index 9084fa2f..524cb552 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.1.0
+1.1.1
diff --git a/backend/src/EasyVPN.Api/EasyVPN.Api.csproj b/backend/src/EasyVPN.Api/EasyVPN.Api.csproj
index 01f7ca0b..3e9e7eae 100644
--- a/backend/src/EasyVPN.Api/EasyVPN.Api.csproj
+++ b/backend/src/EasyVPN.Api/EasyVPN.Api.csproj
@@ -3,7 +3,7 @@
net8.0
enable
enable
- 1.1.0
+ 1.1.1
true
$(NoWarn);1591
diff --git a/backend/src/EasyVPN.Application/EasyVPN.Application.csproj b/backend/src/EasyVPN.Application/EasyVPN.Application.csproj
index 42bd3aa2..8c689cef 100644
--- a/backend/src/EasyVPN.Application/EasyVPN.Application.csproj
+++ b/backend/src/EasyVPN.Application/EasyVPN.Application.csproj
@@ -3,7 +3,7 @@
net8.0
enable
enable
- 1.1.0
+ 1.1.1
diff --git a/backend/src/EasyVPN.Contracts/EasyVPN.Contracts.csproj b/backend/src/EasyVPN.Contracts/EasyVPN.Contracts.csproj
index 2b001995..8d380da2 100644
--- a/backend/src/EasyVPN.Contracts/EasyVPN.Contracts.csproj
+++ b/backend/src/EasyVPN.Contracts/EasyVPN.Contracts.csproj
@@ -3,6 +3,6 @@
net8.0
enable
enable
- 1.1.0
+ 1.1.1
\ No newline at end of file
diff --git a/backend/src/EasyVPN.Domain/EasyVPN.Domain.csproj b/backend/src/EasyVPN.Domain/EasyVPN.Domain.csproj
index 103c16de..b74937c5 100644
--- a/backend/src/EasyVPN.Domain/EasyVPN.Domain.csproj
+++ b/backend/src/EasyVPN.Domain/EasyVPN.Domain.csproj
@@ -3,7 +3,7 @@
net8.0
enable
enable
- 1.1.0
+ 1.1.1
diff --git a/backend/src/EasyVPN.Infrastructure/EasyVPN.Infrastructure.csproj b/backend/src/EasyVPN.Infrastructure/EasyVPN.Infrastructure.csproj
index 2867978c..f601833a 100644
--- a/backend/src/EasyVPN.Infrastructure/EasyVPN.Infrastructure.csproj
+++ b/backend/src/EasyVPN.Infrastructure/EasyVPN.Infrastructure.csproj
@@ -3,7 +3,7 @@
net8.0
enable
enable
- 1.1.0
+ 1.1.1
diff --git a/backend/tests/UnitTests/EasyVPN.Application.UnitTests/EasyVPN.Application.UnitTests.csproj b/backend/tests/UnitTests/EasyVPN.Application.UnitTests/EasyVPN.Application.UnitTests.csproj
index e7ba2ca0..b4c1ed9c 100644
--- a/backend/tests/UnitTests/EasyVPN.Application.UnitTests/EasyVPN.Application.UnitTests.csproj
+++ b/backend/tests/UnitTests/EasyVPN.Application.UnitTests/EasyVPN.Application.UnitTests.csproj
@@ -5,7 +5,7 @@
enable
false
true
- 1.1.0
+ 1.1.1
diff --git a/frontend/package-lock.json b/frontend/package-lock.json
index 83486333..2bd4c307 100644
--- a/frontend/package-lock.json
+++ b/frontend/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "easy-vpn-frontend",
- "version": "1.1.0",
+ "version": "1.1.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "easy-vpn-frontend",
- "version": "1.1.0",
+ "version": "1.1.1",
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
diff --git a/frontend/package.json b/frontend/package.json
index 87d02918..a262e604 100644
--- a/frontend/package.json
+++ b/frontend/package.json
@@ -1,6 +1,6 @@
{
"name": "easy-vpn-frontend",
- "version": "1.1.0",
+ "version": "1.1.1",
"private": true,
"dependencies": {
"@emotion/react": "^11.13.3",
diff --git a/init/init.sh b/init/init.sh
index 176e7bde..e1671684 100755
--- a/init/init.sh
+++ b/init/init.sh
@@ -1,5 +1,5 @@
#!/bin/sh
-VERSION=1.1.0
+VERSION=1.1.1
echo ""
echo "🔧 Data Initialization Script"
diff --git a/services/AmneziaWgVpn/cmd/config.yml b/services/AmneziaWgVpn/cmd/config.yml
index 9e9ed8cf..01dae7c7 100644
--- a/services/AmneziaWgVpn/cmd/config.yml
+++ b/services/AmneziaWgVpn/cmd/config.yml
@@ -1,6 +1,6 @@
service:
name: 'wireguard-vpn'
- version: '1.1.0'
+ version: '1.1.1'
api:
port: "8010"
vpn:
diff --git a/services/TelegramBot/pyproject.toml b/services/TelegramBot/pyproject.toml
index b1953647..1f5c676e 100644
--- a/services/TelegramBot/pyproject.toml
+++ b/services/TelegramBot/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "easy-vpn-telegram-bot"
-version = "1.1.0"
+version = "1.1.1"
description = "Telegram Notification Bot for Easy VPN"
authors = ["Alex Poryadin (sw1pr0g) "]
license = "MIT"
diff --git a/services/WireguardVpn/cmd/config.yml b/services/WireguardVpn/cmd/config.yml
index 99b6d041..7e24b485 100644
--- a/services/WireguardVpn/cmd/config.yml
+++ b/services/WireguardVpn/cmd/config.yml
@@ -1,6 +1,6 @@
service:
name: 'wireguard-vpn'
- version: '1.1.0'
+ version: '1.1.1'
api:
port: "8000"
vpn: