diff --git a/.changes/unreleased/Features-20241213-104739.yaml b/.changes/unreleased/Features-20241213-104739.yaml deleted file mode 100644 index 363e326..0000000 --- a/.changes/unreleased/Features-20241213-104739.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Features -body: Double the max message size -time: 2024-12-13T10:47:39.843647-07:00 diff --git a/.changes/v0.8.0.md b/.changes/v0.8.0.md new file mode 100644 index 0000000..18e715a --- /dev/null +++ b/.changes/v0.8.0.md @@ -0,0 +1,3 @@ +## v0.8.0 - 2024-12-13 +### Features +* Double the max message size diff --git a/.github/workflows/changelog-check.yaml b/.github/workflows/changelog-check.yaml index 9a1f0b1..5f1a382 100644 --- a/.github/workflows/changelog-check.yaml +++ b/.github/workflows/changelog-check.yaml @@ -4,11 +4,10 @@ on: branches: - main - jobs: check-changelog: runs-on: ubuntu-latest - if: "!startsWith(github.event.head_commit.message, 'version:')" + if: "!startsWith(github.event.pull_request.title, 'version:')" steps: - uses: actions/checkout@v4 - run: git fetch --depth=1 origin main @@ -48,4 +47,3 @@ jobs: echo "Changelog has version '$CHANGELOG_VERSION' while package has '$PACKAGE_VERSION'." exit 1 fi - diff --git a/.github/workflows/code-quality.yaml b/.github/workflows/code-quality.yaml index 1bd801a..d91fb63 100644 --- a/.github/workflows/code-quality.yaml +++ b/.github/workflows/code-quality.yaml @@ -5,6 +5,7 @@ on: jobs: code-quality: runs-on: ubuntu-latest + if: "!startsWith(github.event.pull_request.title, 'version:')" steps: - uses: actions/checkout@v4 @@ -31,4 +32,3 @@ jobs: SL_HOST: ${{ secrets.TEST_HOST }} SL_ENV_ID: ${{ secrets.TEST_ENV_ID }} SL_TOKEN: ${{ secrets.TEST_TOKEN }} - diff --git a/CHANGELOG.md b/CHANGELOG.md index c1c863a..9ece863 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. Do not edit this file manually, it is generated automatically by [changie](https://github.com/miniscruff/changie). +## v0.8.0 - 2024-12-13 +### Features +* Double the max message size + ## v0.7.0 - 2024-11-14 ### Features * Support for adhoc queries with only groupby. This is equivalent to listing dimension values. diff --git a/dbtsl/__about__.py b/dbtsl/__about__.py index f406109..44f4ad0 100644 --- a/dbtsl/__about__.py +++ b/dbtsl/__about__.py @@ -1 +1 @@ -VERSION = "0.7.0" +VERSION = "0.8.0"