Skip to content

Commit 8fda8d0

Browse files
committed
chore(release): v0.7.0
1 parent c33b1bf commit 8fda8d0

File tree

4 files changed

+17
-6
lines changed

4 files changed

+17
-6
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

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

5+
## [0.7.0](https://github.com/pythoninja/sshgen/compare/v0.6.0..0.7.0) - 2024-03-16
6+
7+
### Features
8+
9+
- *(cli)* Migrate to cyclopts - ([cca5053](https://github.com/pythoninja/sshgen/commit/cca5053c34508ef0bcb78e17dc2ac9bce4050368))
10+
11+
### Development
12+
13+
- *(dev)* Update to ruff 0.3.3 - ([c33b1bf](https://github.com/pythoninja/sshgen/commit/c33b1bf2e96a454b43d2855cb83eb8afea5e65af))
14+
- *(dev)* Remove changelog entries from generator - ([0a79d78](https://github.com/pythoninja/sshgen/commit/0a79d782cc6c65596c1f56c93ee58ceb47621fdc))
15+
516
## [0.6.0](https://github.com/pythoninja/sshgen/compare/v0.5.0..v0.6.0) - 2024-03-10
617

718
### Features

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.6.0
8+
Current version: v0.7.0
99

1010
## Table of Contents
1111

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

3535
```shell
36-
pip install --user git+https://github.com/pythoninja/sshgen@v0.6.0
36+
pip install --user git+https://github.com/pythoninja/sshgen@v0.7.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.6.0
48+
pipx install git+https://github.com/pythoninja/sshgen@v0.7.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.6.0"
3+
version = "0.7.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.6.0"
34+
current = "0.7.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.6.0"
5+
__version__ = "0.7.0"

0 commit comments

Comments
 (0)