Skip to content

Commit a7493c7

Browse files
committed
chore(release): v0.9.0
1 parent 78d5c26 commit a7493c7

File tree

4 files changed

+27
-7
lines changed

4 files changed

+27
-7
lines changed

CHANGELOG.md

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

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

5-
## [0.8.0](https://github.com/pythoninja/sshgen/compare/v0.7.3..0.8.0) - 2024-09-07
5+
## [0.9.0](https://github.com/pythoninja/sshgen/compare/v0.8.0..0.9.0) - 2025-01-12
6+
7+
### Features
8+
9+
- Warn if ansible_host is missing - ([5232eac](https://github.com/pythoninja/sshgen/commit/5232eacc64deac6e36bb2f194af22d4348208a15))
10+
11+
### Bug Fixes
12+
13+
- *(ci)* Replace ruff version - ([78d5c26](https://github.com/pythoninja/sshgen/commit/78d5c2649cd330ed215357cc69a6641a95714dba))
14+
15+
### Development
16+
17+
- *(dev)* Migrate pyproject to poetry 2 - ([a7efebe](https://github.com/pythoninja/sshgen/commit/a7efebe18c03519f83de8b565ee41f423593c0ad))
18+
- *(dev)* Remove ANN ruff rule - ([325fd43](https://github.com/pythoninja/sshgen/commit/325fd43d21f884b80408365354af881e973f88c6))
19+
20+
### Miscellaneous Tasks
21+
22+
- Migrate to astral-sh official action - ([fbb6732](https://github.com/pythoninja/sshgen/commit/fbb67327fd53e2af2619ef89f6f4ae6c1ea93652))
23+
- Bump poetry to 2.0.0 - ([2843650](https://github.com/pythoninja/sshgen/commit/284365060e7900b5a59d843683207455df0a15ed))
24+
25+
## [0.8.0](https://github.com/pythoninja/sshgen/compare/v0.7.3..v0.8.0) - 2024-09-07
626

727
### Features
828

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.8.0
5+
Current version: v0.9.0
66

77
## Table of Contents
88

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

3232
```shell
33-
pip install --user git+https://github.com/pythoninja/sshgen@v0.8.0
33+
pip install --user git+https://github.com/pythoninja/sshgen@v0.9.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.8.0
45+
pipx install git+https://github.com/pythoninja/sshgen@v0.9.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
[project]
22
name = "sshgen"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
description = "SSH config generator based on Ansible hosts yaml file"
55
license = "Unlicense"
66
authors = [
@@ -33,7 +33,7 @@ build-backend = "poetry.core.masonry.api"
3333
github_url = "https://github.com/pythoninja/sshgen"
3434

3535
[tool.tbump.version]
36-
current = "0.8.0"
36+
current = "0.9.0"
3737
regex = '''
3838
(?P<major>\d+)
3939
\.

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.8.0"
5+
__version__ = "0.9.0"

0 commit comments

Comments
 (0)