Skip to content

Commit

Permalink
chore(release): version 0.1.1 → 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
daxartio committed Oct 16, 2023
1 parent 67bba9a commit 93205da
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.1.2 (2023-10-16)

### Fix

- change dict to protocol

## 0.1.1 (2023-10-14)

### Refactor
Expand Down
2 changes: 1 addition & 1 deletion flager/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from flager.exceptions import BaseError, FeatureFlagNotDefined, FeatureFlagNotFound
from flager.main import FeatureFlagsProxy, FeatureFlagsUpdater

__version__ = "0.1.1"
__version__ = "0.1.2"
__all__ = (
"BaseError",
"FeatureFlagNotDefined",
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.commitizen]
name = "cz_conventional_commits"
version = "0.1.1"
version = "0.1.2"
tag_format = "$version"
version_files = [
"flager/__init__.py",
Expand All @@ -15,7 +15,7 @@ update_changelog_on_bump = true

[tool.poetry]
name = "flager"
version = "0.1.1"
version = "0.1.2"
description = ""
authors = ["Danil Akhtarov <daxartio@gmail.com>"]
license = "MIT"
Expand Down

0 comments on commit 93205da

Please sign in to comment.