Skip to content

Commit 096487f

Browse files
committed
chore(release): v0.6.0
1 parent ef9280d commit 096487f

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
## [unreleased]
5+
## [0.6.0](https://github.com/pythoninja/sshgen/compare/v0.5.0..0.6.0) - 2024-03-10
66

77
### Features
88

@@ -14,6 +14,8 @@ All notable changes to this project will be documented in this file.
1414

1515
### Development
1616

17+
- *(dev)* Add just check - ([ef9280d](https://github.com/pythoninja/sshgen/commit/ef9280d993e8f8689de4a0bba28d57566915c998))
18+
- *(dev)* Fix tbump configuration - ([0561adf](https://github.com/pythoninja/sshgen/commit/0561adfd3c997efed4b5ab6284ac858dc4ce788c))
1719
- *(dev)* Ignore test files - ([9ac9b86](https://github.com/pythoninja/sshgen/commit/9ac9b8661e5e6956fdc97e01b34b106be71d7e6c))
1820
- *(dev)* Add justfile - ([6b5541e](https://github.com/pythoninja/sshgen/commit/6b5541ebb27bfaaa5b2d5130282358119bbcd35f))
1921
- *(dev)* Enable ruff-specific rules for linter - ([98b901c](https://github.com/pythoninja/sshgen/commit/98b901c837a130007f9c91ab4e0f1642559b728d))
@@ -24,7 +26,9 @@ All notable changes to this project will be documented in this file.
2426

2527
### Documentation
2628

29+
- *(changelog)* Update release notes - ([25491c1](https://github.com/pythoninja/sshgen/commit/25491c1c3f31a3d2be479df258ff565f653a1562))
2730
- *(changelog)* Update release notes - ([f6d1323](https://github.com/pythoninja/sshgen/commit/f6d1323c767b93d1034bdea17a73e783fd7a50e8))
31+
- Clarify `Include` directive positioning - ([e1258e2](https://github.com/pythoninja/sshgen/commit/e1258e23d80b8be581ecc9d31105dd2b9b5a251b))
2832
- Update usage and output example - ([6a5dda4](https://github.com/pythoninja/sshgen/commit/6a5dda4b631b4830cc2e39db4132e3849e9d5a24))
2933
- Update example usage in cli - ([c20477a](https://github.com/pythoninja/sshgen/commit/c20477a55c9b67e42ede4085828a1288ee6aa777))
3034

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
SSH configuration generator based on your Ansible hosts YAML file.
77

8-
Current version: v0.5.0
8+
Current version: v0.6.0
99

1010
## Table of Contents
1111

@@ -33,7 +33,7 @@ Current version: v0.5.0
3333
### Using pip
3434

3535
```shell
36-
pip install --user git+https://github.com/pythoninja/sshgen@v0.5.0
36+
pip install --user git+https://github.com/pythoninja/sshgen@v0.6.0
3737
```
3838

3939
Or
@@ -45,7 +45,7 @@ pip install --user sshgen
4545
### Using pipx
4646

4747
```shell
48-
pipx install git+https://github.com/pythoninja/sshgen@v0.5.0
48+
pipx install git+https://github.com/pythoninja/sshgen@v0.6.0
4949
```
5050

5151
Or just run without installing:

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "sshgen"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
description = "SSH config generator based on Ansible hosts yaml file"
55
license = "Unlicense"
66
repository = "https://github.com/pythoninja/sshgen"
@@ -31,7 +31,7 @@ build-backend = "poetry.core.masonry.api"
3131
github_url = "https://github.com/pythoninja/sshgen"
3232

3333
[tool.tbump.version]
34-
current = "0.5.0"
34+
current = "0.6.0"
3535
regex = '''
3636
(?P<major>\d+)
3737
\.

sshgen/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33

44
__app_name__ = "sshgen"
5-
__version__ = "0.5.0"
5+
__version__ = "0.6.0"

0 commit comments

Comments
 (0)