Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
uses: orhun/git-cliff-action@v4
with:
config: cliff.toml
args: --verbose
args: --tag ${{ github.event.inputs.version }} --verbose
env:
OUTPUT: CHANGELOG.md
GITHUB_REPO: ${{ github.repository }}
Expand All @@ -68,7 +68,7 @@ jobs:
run: |
git config --global user.name "${{ steps.app-token.outputs.user-name }}"
git config --global user.email "${{ steps.app-token.outputs.user-email }}"
git add package.json Cargo.toml index.js index.d.ts CHANGELOG.md LICENSE-3RD-PARTY.txt
git add package.json Cargo.toml Cargo.lock index.js index.d.ts CHANGELOG.md LICENSE-3RD-PARTY.txt
git commit -m "${{ github.event.inputs.version }}"
git push
- name: Set version output
Expand Down
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## [unreleased]
## [0.0.0-preview.8] - 2025-10-08

### 🚀 Features

- Improve release process using github workflow ([#18](https://github.com//issues/18))
- Improve release process using github workflow ([#18](https://github.com/mongodb-js/atlas-local-lib-js/pull/18))
## [0.0.0-preview.7] - 2025-10-03

### ⚙️ Miscellaneous Tasks
Expand All @@ -23,7 +23,7 @@

### 🚀 Features

- Add Coveralls ([#9](https://github.com//issues/9))
- Add Coveralls ([#9](https://github.com/mongodb-js/atlas-local-lib-js/pull/9))
- Implement get_connection_string

### 🐛 Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ trim = true
render_always = true
# An array of regex based postprocessors to modify the changelog.
postprocessors = [
{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](https://github.com/$GITHUB_REPO/issues/${2}))" },
{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](https://github.com/mongodb-js/atlas-local-lib-js/pull/${2}))" },
]
# render body even when there are no releases to process
# render_always = true
Expand Down Expand Up @@ -78,7 +78,7 @@ commit_parsers = [
filter_commits = false
# An array of link parsers for extracting external references, and turning them into URLs, using regex.
link_parsers = [
{ pattern = "#(\\d+)", href = "https://github.com/$GITHUB_REPO/issues/$1" }
{ pattern = "#(\\d+)", href = "https://github.com/mongodb-js/atlas-local-lib-js/issues/$1" },
]
# Include only the tags that belong to the current branch.
use_branch_tags = false
Expand Down