1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-10 23:50:12 +00:00

version 1.1.0

This commit is contained in:
Bram Wiepjes 2021-04-08 17:47:36 +02:00
parent 56ca2d127c
commit 959faa28b0
8 changed files with 10 additions and 10 deletions
README.md
backend
setup.py
src/baserow/config/settings
changelog.md
deploy/cloudron
docs/guides/installation
web-frontend

View file

@ -118,7 +118,7 @@ Created by Bram Wiepjes (Baserow) - bram@baserow.io.
Distributes under the MIT license. See `LICENSE` for more information.
Version: 1.0.1
Version: 1.1.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.0.1'
VERSION = '1.1.0'
def get_requirements(env):

View file

@ -182,7 +182,7 @@ SPECTACULAR_SETTINGS = {
'name': 'MIT',
'url': 'https://gitlab.com/bramw/baserow/-/blob/master/LICENSE'
},
'VERSION': '1.0.1',
'VERSION': '1.1.0',
'SERVE_INCLUDE_SCHEMA': False,
'TAGS': [
{'name': 'Settings'},

View file

@ -1,6 +1,6 @@
# Changelog
## Unreleased
## Released (2021-04-08)
* Added support for importing tables from XML files.
* Added support for different character encodings when importing CSV files.

View file

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

View file

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

View file

@ -38,7 +38,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.0.1
$ cloudron install -l baserow.{YOUR_DOMAIN} --image registry.gitlab.com/bramw/baserow/cloudron:1.1.0
App is being installed.
...
App is installed.
@ -58,7 +58,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.0.1
cloudron update --app {YOUR_APP_ID} --image registry.gitlab.com/bramw/baserow/cloudron:1.1.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.0.1",
"version": "1.1.0",
"private": true,
"description": "Baserow: open source no-code database web frontend.",
"author": "Bram Wiepjes (Baserow)",