Skip to content

Commit

Permalink
Bump Version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
blythed committed Nov 2, 2024
1 parent 189e9ee commit 0eaa367
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 7 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/ci_templates.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,17 +83,22 @@ jobs:
echo "matrix_json: $matrix_json"
echo "matrix_json=$matrix_json" >> $GITHUB_ENV
- name: Set job output
id: final_output
run: |
echo "::set-output name=matrix::$matrix_json"
echo "::set-output name=templates_exist::$TEMPLATES_EXIST"
template_count=$(jq '.template | length' <<< "$matrix_json")
echo "template count: $template_count"
echo "matrix_json=$matrix_json" >> $GITHUB_ENV
if [[ $template_count -gt 0 ]]; then
echo "templates_exist=1" >> $GITHUB_OUTPUT
else
echo "matrix_json={}" >> $GITHUB_ENV
echo "templates_exist=0" >> $GITHUB_OUTPUT
fi
test_template:
needs: template_update_check
if: needs.template_update_check.outputs.templates_exist != '0'
if: ${{ fromJson(needs.template_update_check.outputs.templates_exist) == 1 }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

#### Changed defaults / behaviours

#### New Features & Functionality

#### Bug Fixes

## [0.3.0](https://github.com/superduper-io/superduper/compare/0.4.0...0.3.0]) (2024-Nov-02)

#### Changed defaults / behaviours

- Change images docker superduper/<image> to superduperio/<image>
- Change the image's user from `/home/superduperdb` to `/home/superduper`
- Add message broker service config
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.0.dev
0.4.0
2 changes: 1 addition & 1 deletion superduper/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

logging = logger.Logging

__version__ = '0.4.0.dev'
__version__ = '0.4.0'


from .base.decorators import code
Expand Down

0 comments on commit 0eaa367

Please sign in to comment.