Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version: 0.24.8-alpha → 0.25.0-alpha #4022

Merged
merged 1 commit into from
Jun 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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.24.8-alpha
current_version = 0.25.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.24.8-alpha
VERSION=0.25.0-alpha
DATABASE_USER=docker
DATABASE_PASSWORD=docker
DATABASE_DB=airbyte
Expand Down
2 changes: 1 addition & 1 deletion airbyte-webapp/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion airbyte-webapp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "airbyte-webapp",
"version": "0.24.8-alpha",
"version": "0.25.0-alpha",
"private": true,
"scripts": {
"start": "react-scripts start",
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/upgrading-airbyte.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ If you inadvertently upgrade to a version of Airbyte that is not compatible with
Here's an example of what it 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.24.8-alpha --\
docker run --rm -v /tmp:/config airbyte/migration:0.25.0-alpha --\
--input /config/airbyte_archive.tar.gz\
--output /config/airbyte_archive_migrated.tar.gz
```
Expand Down
2 changes: 1 addition & 1 deletion kube/overlays/stable/.env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AIRBYTE_VERSION=0.24.8-alpha
AIRBYTE_VERSION=0.25.0-alpha
DATABASE_USER=docker
DATABASE_PASSWORD=docker
DATABASE_URL=jdbc:postgresql://airbyte-db-svc:5432/airbyte
Expand Down
10 changes: 5 additions & 5 deletions kube/overlays/stable/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ bases:

images:
- name: airbyte/seed
newTag: 0.24.8-alpha
newTag: 0.25.0-alpha
- name: airbyte/db
newTag: 0.24.8-alpha
newTag: 0.25.0-alpha
- name: airbyte/scheduler
newTag: 0.24.8-alpha
newTag: 0.25.0-alpha
- name: airbyte/server
newTag: 0.24.8-alpha
newTag: 0.25.0-alpha
- name: airbyte/webapp
newTag: 0.24.8-alpha
newTag: 0.25.0-alpha
- name: temporalio/auto-setup
newTag: 1.7.0

Expand Down