Skip to content

Commit 22f9c3c

Browse files
authored
Prepare for 2.0.6 (baserow#4496)
1 parent db785d3 commit 22f9c3c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+179
-163
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ existing tools and performs at any scale.
2828
[![Deploy to Heroku](https://www.herokucdn.com/deploy/button.svg)](https://www.heroku.com/deploy/?template=https://github.com/baserow/baserow/tree/master)
2929

3030
```bash
31-
docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:2.0.5
31+
docker run -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:2.0.6
3232
```
3333

3434
![Baserow database screenshot](docs/assets/screenshot.png "Baserow database screenshot")
@@ -116,7 +116,7 @@ Created by Baserow B.V. - bram@baserow.io.
116116

117117
Distributes under the MIT license. See `LICENSE` for more information.
118118

119-
Version: 2.0.5
119+
Version: 2.0.6
120120

121121
The official repository can be found at https://github.com/baserow/baserow.
122122

backend/docker/docker-entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set -euo pipefail
66
# ENVIRONMENT VARIABLES USED DIRECTLY BY THIS ENTRYPOINT
77
# ======================================================
88

9-
export BASEROW_VERSION="2.0.5"
9+
export BASEROW_VERSION="2.0.6"
1010

1111
# Used by docker-entrypoint.sh to start the dev server
1212
# If not configured you'll receive this: CommandError: "0.0.0.0:" is not a valid port number or address:port pair.

backend/src/baserow/config/settings/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@
456456
"name": "MIT",
457457
"url": "https://github.com/baserow/baserow/blob/develop/LICENSE",
458458
},
459-
"VERSION": "2.0.5",
459+
"VERSION": "2.0.6",
460460
"SERVE_INCLUDE_SCHEMA": False,
461461
"TAGS": [
462462
{"name": "Settings"},

backend/src/baserow/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "2.0.5"
1+
VERSION = "2.0.6"

changelog.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## Released 2.0.6
4+
5+
### New features
6+
* [Core] Added more advanced formulas. [#4318](https://github.com/baserow/baserow/-/issues/4318)
7+
* [Core] Allow array properties to be selected in the formula context when expert mode is selected. [#4485](https://github.com/baserow/baserow/-/issues/4485)
8+
9+
### Bug fixes
10+
* [Builder] Resolve an issue with styling button fields in table elements. [#4494](https://github.com/baserow/baserow/-/issues/4494)
11+
* [Database] Ensure m2m field indexes are all set.
12+
* [Database] Prevent creating a new constraint when the enter key of the default value is pressed.
13+
14+
315
## Released 2.0.5
416

517
### Bug fixes

changelog/entries/unreleased/bug/4494_resolve_an_issue_with_styling_button_fields_in_table_element.json renamed to changelog/entries/2.0.6/bug/4494_resolve_an_issue_with_styling_button_fields_in_table_element.json

File renamed without changes.

changelog/entries/unreleased/bug/ensure_m2m_indexes_are_set.json renamed to changelog/entries/2.0.6/bug/ensure_m2m_indexes_are_set.json

File renamed without changes.

changelog/entries/unreleased/bug/present_constraint_create_on_form_submit_event.json renamed to changelog/entries/2.0.6/bug/present_constraint_create_on_form_submit_event.json

File renamed without changes.

changelog/entries/unreleased/feature/4318_added_more_advanced_formulas.json renamed to changelog/entries/2.0.6/feature/4318_added_more_advanced_formulas.json

File renamed without changes.

changelog/entries/unreleased/feature/4485_allow_array_properties_to_be_selected_in_the_formula_context.json renamed to changelog/entries/2.0.6/feature/4485_allow_array_properties_to_be_selected_in_the_formula_context.json

File renamed without changes.

0 commit comments

Comments
 (0)