diff --git a/.github/workflows/build-beta.yml b/.github/workflows/build-beta.yml index 02fdc27d..134c19f5 100644 --- a/.github/workflows/build-beta.yml +++ b/.github/workflows/build-beta.yml @@ -3,11 +3,10 @@ name: Build & release [BETA] on: push: tags: - - "v*" - - '*-beta.[0-9]+' + - 'v[0-9]+.[0-9]+.[0-9]+-beta.[0-9]+' env: - BRANCH_NAME: ${{ github.ref }} + BRANCH_NAME: ${{ github.head_ref || github.ref_name }} jobs: release: @@ -15,17 +14,13 @@ jobs: strategy: matrix: - os: [macos-11, ubuntu-20.04, windows-latest] + os: [macos-11, ubuntu-latest, windows-latest] steps: - - name: Exit if not on beta branch - if: contains(env.BRANCH_NAME, 'beta') == false - run: | - echo "Wrong environment ${{env.BRANCH_NAME}}" - exit 0 - - name: Check out Git repository uses: actions/checkout@v3 + with: + ref: beta - name: Install Node.js uses: actions/setup-node@v3 diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1c4fba2f..2221ecb2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,11 +3,10 @@ name: Build & release [STABLE] on: push: tags: - - "v*" - - '!*-beta.[0-9]+' + - 'v[0-9]+.[0-9]+.[0-9]+' env: - BRANCH_NAME: ${{ github.ref }} + BRANCH_NAME: ${{ github.head_ref || github.ref_name }} jobs: release: @@ -15,7 +14,7 @@ jobs: strategy: matrix: - os: [macos-11, ubuntu-20.04, windows-latest] + os: [macos-11, ubuntu-latest, windows-latest] steps: - name: Exit if not on master branch @@ -26,6 +25,8 @@ jobs: - name: Check out Git repository uses: actions/checkout@v3 + with: + ref: master - name: Install Node.js uses: actions/setup-node@v3 diff --git a/CHANGELOG.md b/CHANGELOG.md index dc9066ea..be5e2ce5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [0.7.15](https://github.com/antares-sql/antares/compare/v0.7.14...v0.7.15) (2023-07-31) + + +### Features + +* export file name with hour, minutes and seconds, closes [#610](https://github.com/antares-sql/antares/issues/610) ([2f5fa0f](https://github.com/antares-sql/antares/commit/2f5fa0f2e416e88753c9dc2bf32edefba8c4e072)) + + +### Bug Fixes + +* display content of BLOB fields if not binary, fixes [#628](https://github.com/antares-sql/antares/issues/628) ([f831fcd](https://github.com/antares-sql/antares/commit/f831fcd442f16a03f0ea83ff5bf77a4a79906eb6)) +* **MySQL:** error insertinf new fields with some MySQL configurations, fixes [#360](https://github.com/antares-sql/antares/issues/360) ([51b1419](https://github.com/antares-sql/antares/commit/51b14195a8a6c7e7f1b12bd4b86b7164a56b2aa5)) +* **MySQL:** unable to set more than one value in SET fields ([7c820b1](https://github.com/antares-sql/antares/commit/7c820b18276e4ed5e381d91110acd032862a5be9)) + ### [0.7.14](https://github.com/antares-sql/antares/compare/v0.7.13...v0.7.14) (2023-07-07) diff --git a/package-lock.json b/package-lock.json index c1028213..25fdd969 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "antares", - "version": "0.7.14", + "version": "0.7.15", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "antares", - "version": "0.7.14", + "version": "0.7.15", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index ef40124c..cb6e143b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "antares", "productName": "Antares", - "version": "0.7.14", + "version": "0.7.15", "description": "A modern, fast and productivity driven SQL client with a focus in UX.", "license": "MIT", "repository": "https://github.com/antares-sql/antares.git",