File tree 4 files changed +18
-7
lines changed
4 files changed +18
-7
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project will be documented in this file.
4
4
5
- ## [ unreleased ]
5
+ ## [ 0.1.1 ] - 2023-06-22
6
6
7
7
### Bug Fixes
8
8
9
9
- Properly include aliases ([ PR #3 ] ( https://github.com/pythoninja/sshgen/pull/3 ) ) ([ 3795443] ( https://github.com/pythoninja/sshgen/commit/37954430364805292f6f3dbe4a4bcd7e31193676 ) )
10
10
11
+ ### Continuous Integration
12
+
13
+ - Add linter and release workflows ([ PR #8 ] ( https://github.com/pythoninja/sshgen/pull/8 ) ) ([ ef77472] ( https://github.com/pythoninja/sshgen/commit/ef774722d63d528aaa1e679ee857eac7f3ffc9a8 ) )
14
+ - Add dependabot ([ PR #9 ] ( https://github.com/pythoninja/sshgen/pull/9 ) ) ([ a006907] ( https://github.com/pythoninja/sshgen/commit/a006907e4109748e1000b50086487a0a570fd3d2 ) )
15
+
11
16
### Miscellaneous Tasks
12
17
18
+ - * (deps-dev)* Bump ruff from 0.0.272 to 0.0.274 ([ PR #1 ] ( https://github.com/pythoninja/sshgen/pull/1 ) ) ([ fa35a10] ( https://github.com/pythoninja/sshgen/commit/fa35a10cb6aea6df3d947b59560a1d180eb65c03 ) )
13
19
- * (dev)* Exclude files from example dir ([ ee481ab] ( https://github.com/pythoninja/sshgen/commit/ee481aba26a796c649cd49800eaee2bba2fa5a45 ) )
14
20
- * (dev)* Bump versions in readme ([ PR #5 ] ( https://github.com/pythoninja/sshgen/pull/5 ) ) ([ 560f0b6] ( https://github.com/pythoninja/sshgen/commit/560f0b6e742fdee60d88baebdc7b402a1624a482 ) )
21
+ - * (dev)* Add changelog generator ([ PR #7 ] ( https://github.com/pythoninja/sshgen/pull/7 ) ) ([ 1618a78] ( https://github.com/pythoninja/sshgen/commit/1618a78b11d72b7ef60b0397bebd2f5fe72916b1 ) )
22
+ - * (dev)* Fix ruff version ([ 955af2c] ( https://github.com/pythoninja/sshgen/commit/955af2ca2aa8ccdf0970ee8584144d4c228c6053 ) )
23
+ - * (dev)* Add link to changelog for pypi ([ 8ad9abb] ( https://github.com/pythoninja/sshgen/commit/8ad9abb87493e14d5651b099b6b721642eb65c79 ) )
24
+ - * (dev)* Run changelog generator on version bump ([ c9abbec] ( https://github.com/pythoninja/sshgen/commit/c9abbec5d43ab24e5bba5829d627f7ef1bd1bf22 ) )
25
+ - * (dev)* Improve search for version string in readme ([ a7344fb] ( https://github.com/pythoninja/sshgen/commit/a7344fb631bfc3ef62c5694513c0506855d104ba ) )
15
26
16
27
## [ 0.1.0] - 2023-06-21
17
28
Original file line number Diff line number Diff line change 2
2
3
3
SSH configuration generator based on your Ansible hosts YAML file.
4
4
5
- Current version: v0.1.0
5
+ Current version: v0.1.1
6
6
7
7
## Table of Contents
8
8
21
21
### Using pip
22
22
23
23
``` shell
24
- pip install --user git+https://github.com/pythoninja/
[email protected] .
0
24
+ pip install --user git+https://github.com/pythoninja/
[email protected] .
1
25
25
```
26
26
27
27
### Using pipx
28
28
29
29
``` shell
30
- pipx install git+https://github.com/pythoninja/
[email protected] .
0
30
+ pipx install git+https://github.com/pythoninja/
[email protected] .
1
31
31
```
32
32
33
33
## Usage
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " sshgen"
3
- version = " 0.1.0 "
3
+ version = " 0.1.1 "
4
4
description = " SSH config generator based on Ansible hosts yaml file"
5
5
license = " Unlicense"
6
6
repository = " https://github.com/pythoninja/sshgen"
@@ -30,7 +30,7 @@ build-backend = "poetry.core.masonry.api"
30
30
github_url = " https://github.com/pythoninja/sshgen"
31
31
32
32
[tool .tbump .version ]
33
- current = " 0.1.0 "
33
+ current = " 0.1.1 "
34
34
regex = '''
35
35
(?P<major>\d+)
36
36
\.
Original file line number Diff line number Diff line change 2
2
3
3
4
4
__app_name__ = 'sshgen'
5
- __version__ = '0.1.0 '
5
+ __version__ = '0.1.1 '
You can’t perform that action at this time.
0 commit comments