Skip to content

Commit

Permalink
Release 0.4.1 (#163)
Browse files Browse the repository at this point in the history
* Update CHANGELOG

* drop v from release prefix

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: skarimo <40482491+skarimo@users.noreply.github.com>
Co-authored-by: Sherzod Karimov <sherzod.karimov@datadoghq.com>
  • Loading branch information
3 people committed Jul 17, 2023
1 parent 29fcccf commit b8766a2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const tagName = `v${process.env.RELEASE_BRANCH.split("/")[1]}`;
const tagName = `${process.env.RELEASE_BRANCH.split("/")[1]}`;
await github.rest.git.createRef({
owner: context.repo.owner,
repo: context.repo.repo,
Expand All @@ -44,7 +44,7 @@ jobs:
env:
RELEASE_BRANCH: ${{ github.head_ref }}
run: |
TAG_NAME=v$(echo $RELEASE_BRANCH | cut -d "/" -f2)
TAG_NAME=$(echo $RELEASE_BRANCH | cut -d "/" -f2)
echo "tag_name=$TAG_NAME" >> "$GITHUB_ENV"
shell: bash
- uses: actions/checkout@v3
Expand Down
15 changes: 11 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.4.1 / 2023-07-17
The release contents are same as `v0.4.0`. It includes the executables missing from version `v0.4.0`

Note: This release also drops the prefix `v` from release tag.

**Full Changelog**: https://github.com/DataDog/datadog-sync-cli/compare/v0.3.1...0.4.1

## 0.4.0 / 2023-07-17

### Added
Expand All @@ -12,7 +19,7 @@
## New Contributors
* @abbasalizaidi made their first contribution in https://github.com/DataDog/datadog-sync-cli/pull/151

**Full Changelog**: https://github.com/DataDog/datadog-sync-cli/compare/v0.3.1...0.4.0
**Full Changelog**: https://github.com/DataDog/datadog-sync-cli/compare/v0.3.1...v0.4.0

## 0.3.1 / 2023-06-27

Expand All @@ -21,15 +28,15 @@
* Import `exit` before usage by @skarimo in https://github.com/DataDog/datadog-sync-cli/pull/142


**Full Changelog**: https://github.com/DataDog/datadog-sync-cli/compare/v0.3.0...0.3.1
**Full Changelog**: https://github.com/DataDog/datadog-sync-cli/compare/v0.3.0...v0.3.1

## 0.3.0 / 2023-05-17

### Added
* Make request timeout configurable by @skarimo in https://github.com/DataDog/datadog-sync-cli/pull/136


**Full Changelog**: https://github.com/DataDog/datadog-sync-cli/compare/v0.2.0...0.3.0
**Full Changelog**: https://github.com/DataDog/datadog-sync-cli/compare/v0.2.0...v0.3.0

## 0.2.0 / 2023-05-09

Expand All @@ -45,7 +52,7 @@
## New Contributors
* @nkzou made their first contribution in https://github.com/DataDog/datadog-sync-cli/pull/125

**Full Changelog**: https://github.com/DataDog/datadog-sync-cli/compare/v0.1.0...0.2.0
**Full Changelog**: https://github.com/DataDog/datadog-sync-cli/compare/v0.1.0...v0.2.0

## 0.1.0 / 2023-03-21

Expand Down

0 comments on commit b8766a2

Please sign in to comment.