Skip to content

Commit

Permalink
Release 0.20.0-alpha (airbytehq#2852)
Browse files Browse the repository at this point in the history
* Uncomment migration for 0.20.0.

* Bump version: 0.19.0-alpha → 0.20.0-alpha

* Fix formatting.

* revert bump

* Bump version: 0.19.0-alpha → 0.20.0-alpha

Co-authored-by: jrhizor <[email protected]>
  • Loading branch information
davinchia and jrhizor authored Apr 12, 2021
1 parent 6d95e3b commit 82c8768
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.19.0-alpha
current_version = 0.20.0-alpha
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-[a-z]+)?
Expand Down
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=0.19.0-alpha
VERSION=0.20.0-alpha
DATABASE_USER=docker
DATABASE_PASSWORD=docker
DATABASE_DB=airbyte
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);

}
2 changes: 1 addition & 1 deletion docs/tutorials/upgrading-airbyte.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down

0 comments on commit 82c8768

Please sign in to comment.