diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f5a86d075b5..e6f971ac3de 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,9 +1,9 @@ [bumpversion] -current_version = 0.17.0-alpha +current_version = 0.17.1-alpha commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-[a-z]+)? -serialize = +serialize = {major}.{minor}.{patch}-alpha [bumpversion:file:.bumpversion.cfg] diff --git a/.env b/.env index ad6c7b15b6c..dc362c0c734 100644 --- a/.env +++ b/.env @@ -1,4 +1,4 @@ -VERSION=0.17.0-alpha +VERSION=0.17.1-alpha DATABASE_USER=docker DATABASE_PASSWORD=docker DATABASE_DB=airbyte diff --git a/docs/tutorials/upgrading-airbyte.md b/docs/tutorials/upgrading-airbyte.md index ca472d56a8e..69332196bfb 100644 --- a/docs/tutorials/upgrading-airbyte.md +++ b/docs/tutorials/upgrading-airbyte.md @@ -40,10 +40,10 @@ On the other hand, if you don't mind losing your current Airbyte configuration o Here's an example of what might look like with the values filled in. It assumes that the downloaded `airbyte_archive.tar.gz` is in `/tmp`. ```bash -docker run --rm -v /tmp:/config airbyte/migration:0.17.0-alpha --\ +docker run --rm -v /tmp:/config airbyte/migration:0.17.1-alpha --\ --input /config/airbyte_archive.tar.gz\ --output /config/airbyte_archive_migrated.tar.gz\ - --target-version 0.17.0-alpha + --target-version 0.17.1-alpha ``` {% hint style="info" %}