Skip to content

Commit 2763912

Browse files
committed
6.3.0
1 parent c0f6777 commit 2763912

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ Release dates will be in YYYY-MM-DD format.
1919

2020
## Unreleased
2121

22+
## 6.3.0 - 2024-04-04
23+
24+
### Added
25+
- Support for Google cloud projects (thanks to @3cham)
26+
- Support for multiple aws access keys
27+
2228
## 6.2.1 - 2024-01-04
2329

2430
### Dependency

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ productive:
4444
# - profiles section is no longer needed
4545
gcp-project-dev:
4646
color: '#FF0000'
47-
team: teama
47+
team: team2
4848
region: europe-west1
4949
type: gcp
5050

5151
gcp-project-prd:
5252
color: '#388E3C'
53-
team: teama
53+
team: team2
5454
region: europe-west1
5555
type: gcp
5656
```
@@ -67,10 +67,10 @@ The login flow will be automatically stopped after 60 seconds of inactivity or n
6767
6868
It will trigger the login flow again after 8 hours.
6969
70-
### Chain Assume
70+
### AWS Chain Assume
7171
You may add a "source" profile which will be used to assume a given role.
7272
73-
This is useful when your own user account can not assume service specific roles.
73+
This is useful when your want to assume specific service roles, but can not do so from your user directly.
7474
7575
```yaml
7676
productive:
@@ -90,7 +90,7 @@ In this example, logsmith will first assume the role 'developer-role', write the
9090
9191
Please keep in mind that the roles will be assumed in the given order.
9292
93-
## Access key
93+
## AWS Access key
9494
Please use the dialog option provided by logsmith to set your access key or save it in `.aws/credentials`
9595
under the profile name *access-key*.
9696

@@ -100,7 +100,7 @@ aws_access_key_id = blablubb
100100
aws_secret_access_key = supersecret
101101
```
102102

103-
## Switching region
103+
## AWS Regions
104104
Logsmith will use the `.aws/config` to set your region independent of your credentials in `.aws/credentials`.
105105

106106
```config

app/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = (6, 2, 1)
1+
__version__ = (6, 3, 0)
22
__version_string__ = '.'.join(str(i) for i in __version__)

0 commit comments

Comments
 (0)