Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Marius Træet Gilberg committed Feb 4, 2024
1 parent b4f7517 commit 1666aca
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ and this project adheres to [Semantic Versioning].

- /

## [1.2.0] - 2024-02-04
## [1.2.1] - 2024-02-04

## New Release: v1.2.0 - Set environment variables from configuration.
## New Release: v1.2.1 - Set environment variables from configuration.

### What's New

Expand Down Expand Up @@ -74,6 +74,6 @@ print(settings.mysql.databases.prod) # Output: 'new_value'

<!-- Versions -->
[unreleased]: https://github.com/gilbn/simple-toml-configurator/compare/1.2.0...HEAD
[1.2.0]: https://github.com/gilbn/simple-toml-configurator/releases/tag/1.2.0
[1.2.1]: https://github.com/gilbn/simple-toml-configurator/releases/tag/1.2.1
[1.1.0]: https://github.com/gilbn/simple-toml-configurator/releases/tag/1.1.0
[1.0.0]: https://github.com/gilbn/simple-toml-configurator/releases/tag/1.0.0
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "Simple-TOML-Configurator"
version = "1.2.0"
version = "1.2.1"
license = {text = "MIT License"}
authors = [{name = "GilbN", email = "[email protected]"}]
description = "A simple TOML configurator for Python"
Expand Down
2 changes: 1 addition & 1 deletion src/simple_toml_configurator/toml_configurator.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from tomlkit import TOMLDocument
from .exceptions import *

__version__ = "1.2.0"
__version__ = "1.2.1"

logger = logging.getLogger(__name__)

Expand Down

0 comments on commit 1666aca

Please sign in to comment.