Skip to content

Commit 8833bc2

Browse files
committed
chore(release): v0.2.0
1 parent 3170efe commit 8833bc2

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

CHANGELOG.md

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

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

5-
## [unreleased]
5+
## [0.2.0](https://github.com/pythoninja/sshgen/compare/v0.1.1..0.2.0) - 2023-10-13
66

77
### Features
88

@@ -18,6 +18,7 @@ All notable changes to this project will be documented in this file.
1818

1919
### Development
2020

21+
- *(dev)* Generate beauty changelog ([#47](https://github.com/pythoninja/sshgen/issues/47)) - ([3170efe](https://github.com/pythoninja/sshgen/commit/3170efe95b5676d699e7af069f950c4c46a32231))
2122
- *(dev)* Change type of quotes (experimentally) - ([9b9f75d](https://github.com/pythoninja/sshgen/commit/9b9f75dd2881fbcd0776277a2271558eaf2b3e1d))
2223
- *(dev)* Remove isort rule - ([8815fb9](https://github.com/pythoninja/sshgen/commit/8815fb999bc11e58300181c8cfe47bfa93c09263))
2324
- *(dev)* Add ruff rules - ([a36d07f](https://github.com/pythoninja/sshgen/commit/a36d07ff647249679c6ae495e0bae9874d0ea634))

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

77
## Table of Contents
88

@@ -29,7 +29,7 @@ Current version: v0.1.1
2929
### Using pip
3030

3131
```shell
32-
pip install --user git+https://github.com/pythoninja/sshgen@v0.1.1
32+
pip install --user git+https://github.com/pythoninja/sshgen@v0.2.0
3333
```
3434

3535
Or
@@ -41,7 +41,7 @@ pip install --user sshgen
4141
### Using pipx
4242

4343
```shell
44-
pipx install git+https://github.com/pythoninja/sshgen@v0.1.1
44+
pipx install git+https://github.com/pythoninja/sshgen@v0.2.0
4545
```
4646

4747
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.1.1"
3+
version = "0.2.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.1.1"
33+
current = "0.2.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.1.1'
5+
__version__ = '0.2.0'

0 commit comments

Comments
 (0)