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
8 changes: 8 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[bumpversion]
current_version = 0.1.1
commit = True
tag = True
tag_name = v{new_version}
message = chore: bump version to {new_version}

[bumpversion:file:VERSION]
29 changes: 23 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,18 +70,35 @@ The install script symlinks everything safely into `$HOME`.

---

## 🔖 Versioning & Releases

- Version number lives in the `VERSION` file and is managed by [bumpversion](https://github.com/c4urself/bump2version).
- Install the tool once (e.g. `pip install --user bump2version`).
- To cut a new release:
1. Decide the part to bump (`patch`, `minor`, or `major`).
2. Run `bumpversion <part>` which updates `VERSION`, commits, and tags using `.bumpversion.cfg`.
3. Push everything: `git push && git push --tags`.

---

## 📁 Structure

```
dotfiles/
├── zsh/
│ ├── .zshrc
│ └── custom/
├── .bumpversion.cfg
├── .github/
│ └── workflows/
│ └── secret-scan.yml
├── .gitignore
├── .pre-commit-config.yaml
├── README.md
├── VERSION
├── git/
│ ├── .gitconfig
│ └── .gitignore_global
│ ├── gitconfig
│ └── gitconfig_qustodio (optional)
├── install.sh
└── README.md
└── zsh/
└── zshrc
```

---
Expand Down
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.1.1