boa-dev / temporal

A Rust implementation of ECMAScript's Temporal API
Apache License 2.0
26 stars 4 forks source link

Bump `temporal_rs` version and update changelog #76

Closed nekevss closed 4 months ago

nekevss commented 4 months ago

This PR bumps the version in the changelog and bumps the Cargo.toml version to 0.0.3 for release

jedel1043 commented 4 months ago

Was thinking that we should probably exclude dependabot updates from git cliff EDIT: Is there an option to exclude users in the cliff config file?

nekevss commented 4 months ago

Potentially? it does look like we may be able to group the CHANGELOG.md better if we used conventional commits.

EDIT: So currently it now filters out any commit that is "^Bump", but I think we could configure "dependabot"'s commit message to use conventional commits, something like "chore(dependency): ",which may be better overall.

https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#commit-message

jedel1043 commented 4 months ago

EDIT: So currently it now filters out any commit that is "^Bump", but I think we could configure "dependabot"'s commit message to use conventional commits, something like "chore(dependency): ",which may be better overall.

Makes sense. We can add that on a separate PR I think.