Skip to content

Commit

Permalink
Bump version: 0.28.1-alpha → 0.28.2-alpha (airbytehq#5056)
Browse files Browse the repository at this point in the history
  • Loading branch information
cgardens authored Jul 28, 2021
1 parent 244f6c5 commit b52bdc2
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 18 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.28.1-alpha
current_version = 0.28.2-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.28.1-alpha
VERSION=0.28.2-alpha

# Airbyte Internal Job Database, see https://docs.airbyte.io/operator-guides/configuring-airbyte-db
DATABASE_USER=docker
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.28.1-alpha",
"version": "0.28.2-alpha",
"private": true,
"scripts": {
"start": "react-scripts start",
Expand Down
2 changes: 1 addition & 1 deletion docs/operator-guides/upgrading-airbyte.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ If you are upgrading from (i.e. your current version of Airbyte is) Airbyte ver
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.28.1-alpha --\
docker run --rm -v /tmp:/config airbyte/migration:0.28.2-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-with-resource-limits/.env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AIRBYTE_VERSION=0.28.1-alpha
AIRBYTE_VERSION=0.28.2-alpha

# Airbyte Internal Database, see https://docs.airbyte.io/operator-guides/configuring-airbyte-db
DATABASE_USER=docker
Expand Down
10 changes: 5 additions & 5 deletions kube/overlays/stable-with-resource-limits/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ bases:

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

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.28.1-alpha
AIRBYTE_VERSION=0.28.2-alpha

# Airbyte Internal Database, see https://docs.airbyte.io/operator-guides/configuring-airbyte-db
DATABASE_USER=docker
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 @@ -8,15 +8,15 @@ bases:

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

Expand Down
2 changes: 1 addition & 1 deletion tools/bin/release_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ echo "Bumped version from ${PREV_VERSION} to ${NEW_VERSION}"
echo "Building and publishing version $NEW_VERSION for git revision $GIT_REVISION..."

SUB_BUILD=PLATFORM ./gradlew clean composeBuild
SUB_BUILD=PLATFORM ./gradlew clean publish
SUB_BUILD=PLATFORM ./gradlew publish
VERSION=$NEW_VERSION GIT_REVISION=$GIT_REVISION docker-compose -f docker-compose.build.yaml build
VERSION=$NEW_VERSION GIT_REVISION=$GIT_REVISION docker-compose -f docker-compose.build.yaml push
echo "Completed building and publishing..."
Expand Down

0 comments on commit b52bdc2

Please sign in to comment.