Release v1.2.1
All checks were successful
CD / Checks (push) Successful in 45s

This commit is contained in:
Tomek Wójcik 2024-05-29 19:45:22 +00:00
commit 4da8562871
7 changed files with 48 additions and 5 deletions

11
.gitea/workflows/cd.yaml Normal file
View File

@ -0,0 +1,11 @@
name: "CD"
on:
push:
branches:
- "release"
jobs:
checks:
name: "Checks"
uses: "./.gitea/workflows/checks.yaml"

View File

@ -0,0 +1,27 @@
name: "Checks"
on:
workflow_call:
jobs:
run-checks:
name: "Run checks"
runs-on: "ubuntu-latest"
steps:
- name: "Check out the code"
uses: "actions/checkout@v4"
- name: "Set up Python 3.10"
uses: "actions/setup-python@v5"
with:
python-version: "3.10"
- name: "Set up poetry"
uses: "Gr1N/setup-poetry@v8"
with:
poetry-version: "1.7.1"
- name: "Install deps"
run: |
set -x
poetry install
- name: "Run CI task"
run: |
set -x
poetry run inv ci

View File

@ -1,5 +1,10 @@
## Keep It Secret Changelog
#### v1.2.1 (2024-05-29)
* Gitea Actions integration.
* `README.md` language fixes.
#### v1.2.0 (2024-02-08)
* Hashicorp Vault integration.

View File

@ -65,7 +65,7 @@ to provide secrets suitable for the development environment:
```
The `ProductionSecrets` class uses environment variables and AWS Secrets
Manager to provide secrets suitable for the development environment:
Manager to provide secrets suitable for the production environment:
```
>>> production_secrets = ProductionSecrets()

View File

@ -11,10 +11,10 @@
project = 'Keep It Secret'
copyright = '2023-present Tomek Wójcik'
author = 'Tomek Wójcik'
version = '1.2.0'
version = '1.2.1'
# The full version, including alpha/beta/rc tags
release = '1.2.0'
release = '1.2.1'
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

View File

@ -6,7 +6,7 @@ from .fields import ( # noqa: F401
)
from .secrets import Secrets # noqa: F401
__version__ = '1.2.0'
__version__ = '1.2.1'
__all__ = [
'AbstractField',

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "keep-it-secret"
version = "1.2.0"
version = "1.2.1"
description = "Keep It Secret by BTHLabs"
authors = ["Tomek Wójcik <contact@bthlabs.pl>"]
maintainers = ["BTHLabs <contact@bthlabs.pl>"]