Skip to content

Commit f1ea044

Browse files
committed
chore(release): v0.3.0
1 parent 4b7e2d4 commit f1ea044

File tree

4 files changed

+31
-7
lines changed

4 files changed

+31
-7
lines changed

CHANGELOG.md

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

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

5-
## [0.2.0](https://github.com/pythoninja/sshgen/compare/v0.1.1..0.2.0) - 2023-10-13
5+
## [0.3.0](https://github.com/pythoninja/sshgen/compare/v0.2.0..0.3.0) - 2023-10-21
6+
7+
### Features
8+
9+
- Add verbose flag - ([283ea98](https://github.com/pythoninja/sshgen/commit/283ea9876b41c71b461d939be26d4816de5688dc))
10+
- Add support for custom ssh port ([#50](https://github.com/pythoninja/sshgen/issues/50)) - ([c93f431](https://github.com/pythoninja/sshgen/commit/c93f43148383514c255f9e05764718a03a93e97e))
11+
12+
### Bug Fixes
13+
14+
- *(linter)* Ignore ARG001 and UP007 rules - ([21f320c](https://github.com/pythoninja/sshgen/commit/21f320c58fd22883888d28ac564564addd4ca435))
15+
- *(linter)* PLR6201 issue ([#60](https://github.com/pythoninja/sshgen/issues/60)) - ([e65ccf5](https://github.com/pythoninja/sshgen/commit/e65ccf5a3c1cc237f514c0ea4add9c7caf456750))
16+
- Import logger from cli - ([ac50be2](https://github.com/pythoninja/sshgen/commit/ac50be223eea2420a41cc3b1f7f0389b25f38c2a))
17+
18+
### Miscellaneous Tasks
19+
20+
- Change ruff version for dependabot - ([89dd000](https://github.com/pythoninja/sshgen/commit/89dd000a2e1d32c630d5e4d46c0b37f7335dbdc5))
21+
- Change python version for dependabot - ([42165c1](https://github.com/pythoninja/sshgen/commit/42165c1ca7c84960b9b05c316f97df19ff2b48a6))
22+
23+
### Documentation
24+
25+
- Add verbose mode example to readme - ([4b7e2d4](https://github.com/pythoninja/sshgen/commit/4b7e2d45810d0f17bf2cc84b52fd17a5984550b2))
26+
- Fix total hosts in example ([#62](https://github.com/pythoninja/sshgen/issues/62)) - ([6ddc5a4](https://github.com/pythoninja/sshgen/commit/6ddc5a424460ca25d5df7fa75ac922a766dce00e))
27+
- Update readme example file ([#51](https://github.com/pythoninja/sshgen/issues/51)) - ([684d24d](https://github.com/pythoninja/sshgen/commit/684d24dffbcff9bcc301018825810d9415605164))
28+
29+
## [0.2.0](https://github.com/pythoninja/sshgen/compare/v0.1.1..v0.2.0) - 2023-10-13
630

731
### Features
832

README.md

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

33
SSH configuration generator based on your Ansible hosts YAML file.
44

5-
Current version: v0.2.0
5+
Current version: v0.3.0
66

77
## Table of Contents
88

@@ -30,7 +30,7 @@ Current version: v0.2.0
3030
### Using pip
3131

3232
```shell
33-
pip install --user git+https://github.com/pythoninja/sshgen@v0.2.0
33+
pip install --user git+https://github.com/pythoninja/sshgen@v0.3.0
3434
```
3535

3636
Or
@@ -42,7 +42,7 @@ pip install --user sshgen
4242
### Using pipx
4343

4444
```shell
45-
pipx install git+https://github.com/pythoninja/sshgen@v0.2.0
45+
pipx install git+https://github.com/pythoninja/sshgen@v0.3.0
4646
```
4747

4848
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.2.0"
3+
version = "0.3.0"
44
description = "SSH config generator based on Ansible hosts yaml file"
55
license = "Unlicense"
66
repository = "https://github.com/pythoninja/sshgen"
@@ -30,7 +30,7 @@ build-backend = "poetry.core.masonry.api"
3030
github_url = "https://github.com/pythoninja/sshgen"
3131

3232
[tool.tbump.version]
33-
current = "0.2.0"
33+
current = "0.3.0"
3434
regex = '''
3535
(?P<major>\d+)
3636
\.

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.2.0'
5+
__version__ = '0.3.0'

0 commit comments

Comments
 (0)