Skip to content
Closed
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
35 changes: 35 additions & 0 deletions TAG_CREATION.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Tag Creation Documentation

## Tag Created

**Tag Name:** v0.9.0
**Commit:** 7c82189265d8e7cbee5356e8304ca9f378d1a94e
**Commit Message:** Update base version to 0.9.0 (#30)
**Tag Message:** Release version 0.9.0

## Rationale

The commit 7c82189265d8e7cbee5356e8304ca9f378d1a94e updated the base version in `build.gradle.kts` to 0.9.0, indicating a new release version. Following semantic versioning conventions, the tag `v0.9.0` was created to mark this release.

## Commands Used

```bash
git tag -a v0.9.0 7c82189265d8e7cbee5356e8304ca9f378d1a94e -m "Release version 0.9.0"
```

## Next Steps

To push the tag to the remote repository, run:

```bash
git push origin v0.9.0
```

## Verification

The tag can be verified locally with:

```bash
git tag -l
git show v0.9.0
```