Skip to content

Commit bae7b14

Browse files
committed
chore(release): v0.4.0
1 parent 55f6441 commit bae7b14

File tree

4 files changed

+23
-7
lines changed

4 files changed

+23
-7
lines changed

CHANGELOG.md

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

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

5-
## [0.3.0](https://github.com/pythoninja/sshgen/compare/v0.2.0..0.3.0) - 2023-10-21
5+
## [0.4.0](https://github.com/pythoninja/sshgen/compare/v0.3.0..0.4.0) - 2023-12-15
6+
7+
### Refactor
8+
9+
- Improve error message with yaml ([#82](https://github.com/pythoninja/sshgen/issues/82)) - ([5e530c0](https://github.com/pythoninja/sshgen/commit/5e530c0056fc504727288eb96c45c8b9472bc1a8))
10+
- Separate load and save methods ([#70](https://github.com/pythoninja/sshgen/issues/70)) - ([474f41c](https://github.com/pythoninja/sshgen/commit/474f41c8866db559e617a2f7eca0f1a75b083921))
11+
- Simplify generator logic ([#64](https://github.com/pythoninja/sshgen/issues/64)) - ([77968b8](https://github.com/pythoninja/sshgen/commit/77968b837f8a32bd8dc6396a2ef84054fb8c8554))
12+
13+
### Miscellaneous Tasks
14+
15+
- Bump poetry to 1.7.1 ([#83](https://github.com/pythoninja/sshgen/issues/83)) - ([a3db0a2](https://github.com/pythoninja/sshgen/commit/a3db0a2dc30b7efb5a00fb7451d1110910992f59))
16+
17+
### Documentation
18+
19+
- Add beta note ([#84](https://github.com/pythoninja/sshgen/issues/84)) - ([55f6441](https://github.com/pythoninja/sshgen/commit/55f64415a5d737912acb5b9e4ebe7b3b3a5dc8b8))
20+
21+
## [0.3.0](https://github.com/pythoninja/sshgen/compare/v0.2.0..v0.3.0) - 2023-10-21
622

723
### Features
824

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

1010
## Table of Contents
1111

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

3535
```shell
36-
pip install --user git+https://github.com/pythoninja/sshgen@v0.3.0
36+
pip install --user git+https://github.com/pythoninja/sshgen@v0.4.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.3.0
48+
pipx install git+https://github.com/pythoninja/sshgen@v0.4.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.3.0"
3+
version = "0.4.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.3.0"
33+
current = "0.4.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.3.0'
5+
__version__ = '0.4.0'

0 commit comments

Comments
 (0)