Skip to content

Commit ef984bf

Browse files
version: 0.8.0 (#64)
## v0.8.0 - 2024-12-13 ### Features * Double the max message size
1 parent 07706df commit ef984bf

File tree

6 files changed

+10
-8
lines changed

6 files changed

+10
-8
lines changed

.changes/unreleased/Features-20241213-104739.yaml

-3
This file was deleted.

.changes/v0.8.0.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## v0.8.0 - 2024-12-13
2+
### Features
3+
* Double the max message size

.github/workflows/changelog-check.yaml

+1-3
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@ on:
44
branches:
55
- main
66

7-
87
jobs:
98
check-changelog:
109
runs-on: ubuntu-latest
11-
if: "!startsWith(github.event.head_commit.message, 'version:')"
10+
if: "!startsWith(github.event.pull_request.title, 'version:')"
1211
steps:
1312
- uses: actions/checkout@v4
1413
- run: git fetch --depth=1 origin main
@@ -48,4 +47,3 @@ jobs:
4847
echo "Changelog has version '$CHANGELOG_VERSION' while package has '$PACKAGE_VERSION'."
4948
exit 1
5049
fi
51-

.github/workflows/code-quality.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
jobs:
66
code-quality:
77
runs-on: ubuntu-latest
8+
if: "!startsWith(github.event.pull_request.title, 'version:')"
89
steps:
910
- uses: actions/checkout@v4
1011

@@ -31,4 +32,3 @@ jobs:
3132
SL_HOST: ${{ secrets.TEST_HOST }}
3233
SL_ENV_ID: ${{ secrets.TEST_ENV_ID }}
3334
SL_TOKEN: ${{ secrets.TEST_TOKEN }}
34-

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
Do not edit this file manually, it is generated automatically by [changie](https://github.com/miniscruff/changie).
55

66

7+
## v0.8.0 - 2024-12-13
8+
### Features
9+
* Double the max message size
10+
711
## v0.7.0 - 2024-11-14
812
### Features
913
* Support for adhoc queries with only groupby. This is equivalent to listing dimension values.

dbtsl/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "0.7.0"
1+
VERSION = "0.8.0"

0 commit comments

Comments
 (0)