diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b1e04d9321f..5ff43a9b16a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.19.0-alpha +current_version = 0.20.0-alpha commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-[a-z]+)? diff --git a/.env b/.env index c0548185eae..90ced4745eb 100644 --- a/.env +++ b/.env @@ -1,4 +1,4 @@ -VERSION=0.19.0-alpha +VERSION=0.20.0-alpha DATABASE_USER=docker DATABASE_PASSWORD=docker DATABASE_DB=airbyte diff --git a/airbyte-migration/src/main/java/io/airbyte/migrate/Migrations.java b/airbyte-migration/src/main/java/io/airbyte/migrate/Migrations.java index 3624bf74e4b..c3c0177525f 100644 --- a/airbyte-migration/src/main/java/io/airbyte/migrate/Migrations.java +++ b/airbyte-migration/src/main/java/io/airbyte/migrate/Migrations.java @@ -52,8 +52,7 @@ public class Migrations { MIGRATION_V_0_16_0, MIGRATION_V_0_17_0, MIGRATION_V_0_18_0, - MIGRATION_V_0_19_0 - // , MIGRATION_V_0_20_0 - ); + MIGRATION_V_0_19_0, + MIGRATION_V_0_20_0); } diff --git a/docs/tutorials/upgrading-airbyte.md b/docs/tutorials/upgrading-airbyte.md index b7868ee13cc..3efa067ff89 100644 --- a/docs/tutorials/upgrading-airbyte.md +++ b/docs/tutorials/upgrading-airbyte.md @@ -39,7 +39,7 @@ If you inadvertently upgrade to a version of Airbyte that is not compatible with 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.19.0-alpha --\ +docker run --rm -v /tmp:/config airbyte/migration:0.20.0-alpha --\ --input /config/airbyte_archive.tar.gz\ --output /config/airbyte_archive_migrated.tar.gz ```