Skip to content

Commit 344e2a5

Browse files
committed
chore: bump appwrite version to 1.8.0-RC4
1 parent 9edf8fb commit 344e2a5

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

README-CN.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ docker run -it --rm \
7272
--volume /var/run/docker.sock:/var/run/docker.sock \
7373
--volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \
7474
--entrypoint="install" \
75-
appwrite/appwrite:1.8.0
75+
appwrite/appwrite:1.8.0-RC4
7676
```
7777

7878
### Windows
@@ -84,7 +84,7 @@ docker run -it --rm ^
8484
--volume //var/run/docker.sock:/var/run/docker.sock ^
8585
--volume "%cd%"/appwrite:/usr/src/code/appwrite:rw ^
8686
--entrypoint="install" ^
87-
appwrite/appwrite:1.8.0
87+
appwrite/appwrite:1.8.0-RC4
8888
```
8989

9090
#### PowerShell
@@ -94,7 +94,7 @@ docker run -it --rm `
9494
--volume /var/run/docker.sock:/var/run/docker.sock `
9595
--volume ${pwd}/appwrite:/usr/src/code/appwrite:rw `
9696
--entrypoint="install" `
97-
appwrite/appwrite:1.8.0
97+
appwrite/appwrite:1.8.0-RC4
9898
```
9999

100100
运行后,可以在浏览器上访问 http://localhost 找到 Appwrite 控制台。在非 Linux 的本机主机上完成安装后,服务器可能需要几分钟才能启动。

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ docker run -it --rm \
8282
--volume /var/run/docker.sock:/var/run/docker.sock \
8383
--volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \
8484
--entrypoint="install" \
85-
appwrite/appwrite:1.8.0
85+
appwrite/appwrite:1.8.0-RC4
8686
```
8787

8888
### Windows
@@ -94,7 +94,7 @@ docker run -it --rm ^
9494
--volume //var/run/docker.sock:/var/run/docker.sock ^
9595
--volume "%cd%"/appwrite:/usr/src/code/appwrite:rw ^
9696
--entrypoint="install" ^
97-
appwrite/appwrite:1.8.0
97+
appwrite/appwrite:1.8.0-RC4
9898
```
9999

100100
#### PowerShell
@@ -104,7 +104,7 @@ docker run -it --rm `
104104
--volume /var/run/docker.sock:/var/run/docker.sock `
105105
--volume ${pwd}/appwrite:/usr/src/code/appwrite:rw `
106106
--entrypoint="install" `
107-
appwrite/appwrite:1.8.0
107+
appwrite/appwrite:1.8.0-RC4
108108
```
109109

110110
Once the Docker installation is complete, go to http://localhost to access the Appwrite console from your browser. Please note that on non-Linux native hosts, the server might take a few minutes to start after completing the installation.

app/init/constants.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
const APP_FILE_ACCESS = 24 * 60 * 60; // 24 hours
4040
const APP_CACHE_UPDATE = 24 * 60 * 60; // 24 hours
4141
const APP_CACHE_BUSTER = 4321;
42-
const APP_VERSION_STABLE = '1.8.0';
42+
const APP_VERSION_STABLE = '1.8.0-RC4';
4343
const APP_DATABASE_ATTRIBUTE_EMAIL = 'email';
4444
const APP_DATABASE_ATTRIBUTE_ENUM = 'enum';
4545
const APP_DATABASE_ATTRIBUTE_IP = 'ip';

src/Appwrite/Migration/Migration.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ abstract class Migration
9090
'1.7.3' => 'V22',
9191
'1.7.4' => 'V22',
9292
'1.8.0' => 'V23',
93+
'1.8.0-RC4' => 'V23',
9394
];
9495

9596
/**

0 commit comments

Comments
 (0)