1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-03-12 19:56:53 +00:00

prepared for 1.4

This commit is contained in:
Bram Wiepjes 2021-07-12 13:06:58 +02:00
parent aaf6cf019b
commit 67ec2a80fb
8 changed files with 11 additions and 9 deletions
README.md
backend
setup.py
src/baserow/config/settings
changelog.md
deploy/cloudron
docs/guides/installation
web-frontend

View file

@ -96,7 +96,7 @@ Created by Bram Wiepjes (Baserow) - bram@baserow.io.
Distributes under the MIT license. See `LICENSE` for more information.
Version: 1.3.0
Version: 1.4.0
The official repository can be found at https://gitlab.com/bramw/baserow.

View file

@ -6,7 +6,7 @@ from setuptools import find_packages, setup
PROJECT_DIR = os.path.dirname(__file__)
REQUIREMENTS_DIR = os.path.join(PROJECT_DIR, "requirements")
VERSION = "1.3.0"
VERSION = "1.4.0"
def get_requirements(env):

View file

@ -216,7 +216,7 @@ SPECTACULAR_SETTINGS = {
"name": "MIT",
"url": "https://gitlab.com/bramw/baserow/-/blob/master/LICENSE",
},
"VERSION": "1.3.0",
"VERSION": "1.4.0",
"SERVE_INCLUDE_SCHEMA": False,
"TAGS": [
{"name": "Settings"},

View file

@ -2,6 +2,8 @@
## Unreleased
## Released (2021-07-12)
* Made it possible to list table field meta-data with a token.
* Added form view.
* The API endpoint to update the grid view field options has been moved to

View file

@ -8,7 +8,7 @@
"contactEmail": "bram@baserow.io",
"icon": "file://logo.png",
"tags": ["no-code", "nocode", "database", "data", "collaborate", "airtable"],
"version": "1.3.0",
"version": "1.4.0",
"healthCheckPath": "/_health",
"httpPort": 80,
"addons": {

View file

@ -1,11 +1,11 @@
**Build**
```
$ docker build -t registry.gitlab.com/bramw/baserow/cloudron:1.3.0 .
$ docker build -t registry.gitlab.com/bramw/baserow/cloudron:1.4.0 .
```
**Push**
```
$ docker push registry.gitlab.com/bramw/baserow/cloudron:1.3.0
$ docker push registry.gitlab.com/bramw/baserow/cloudron:1.4.0
```

View file

@ -42,7 +42,7 @@ $ cd baserow/deploy/cloudron
After that you can install the Baserow Cloudron app by executing the following commands.
```
$ cloudron install -l baserow.{YOUR_DOMAIN} --image registry.gitlab.com/bramw/baserow/cloudron:1.3.0
$ cloudron install -l baserow.{YOUR_DOMAIN} --image registry.gitlab.com/bramw/baserow/cloudron:1.4.0
App is being installed.
...
App is installed.
@ -67,7 +67,7 @@ First you need to figure out what your app id is. You can do so by executing the
the latest version.
```
cloudron update --app {YOUR_APP_ID} --image registry.gitlab.com/bramw/baserow/cloudron:1.3.0
cloudron update --app {YOUR_APP_ID} --image registry.gitlab.com/bramw/baserow/cloudron:1.4.0
```
> Note that you must replace the image with the most recent image of Baserow. The

View file

@ -1,6 +1,6 @@
{
"name": "baserow",
"version": "1.3.0",
"version": "1.4.0",
"private": true,
"description": "Baserow: open source no-code database web frontend.",
"author": "Bram Wiepjes (Baserow)",