Skip to content

Commit f952dad

Browse files
committed
chore(release): v0.1.1
1 parent a7344fb commit f952dad

File tree

4 files changed

+18
-7
lines changed

4 files changed

+18
-7
lines changed

CHANGELOG.md

+12-1
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,27 @@
22

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

5-
## [unreleased]
5+
## [0.1.1] - 2023-06-22
66

77
### Bug Fixes
88

99
- Properly include aliases ([PR #3](https://github.com/pythoninja/sshgen/pull/3)) ([3795443](https://github.com/pythoninja/sshgen/commit/37954430364805292f6f3dbe4a4bcd7e31193676))
1010

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+
1116
### Miscellaneous Tasks
1217

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))
1319
- *(dev)* Exclude files from example dir ([ee481ab](https://github.com/pythoninja/sshgen/commit/ee481aba26a796c649cd49800eaee2bba2fa5a45))
1420
- *(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))
1526

1627
## [0.1.0] - 2023-06-21
1728

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

77
## Table of Contents
88

@@ -21,13 +21,13 @@ TBD
2121
### Using pip
2222

2323
```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
2525
```
2626

2727
### Using pipx
2828

2929
```shell
30-
pipx install git+https://github.com/pythoninja/[email protected].0
30+
pipx install git+https://github.com/pythoninja/[email protected].1
3131
```
3232

3333
## Usage

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.1.0"
3+
version = "0.1.1"
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.1.0"
33+
current = "0.1.1"
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.1.0'
5+
__version__ = '0.1.1'

0 commit comments

Comments
 (0)