Skip to content

Commit

Permalink
Bump library version, add changelog and security to docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
nekitdev committed Jun 28, 2022
1 parent 661d2d7 commit d25a726
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

<!-- changelog: start -->

## 1.2.2 (2022-06-28)

No significant changes.

## 1.2.1 (2022-06-25)

No significant changes.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Or by directly specifying it in the configuration like so:

```toml
[tool.poetry.dependencies]
entrypoint = "^1.2.1"
entrypoint = "^1.2.2"
```

Alternatively, you can add it directly from the source:
Expand Down
1 change: 1 addition & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
--8<-- "CHANGELOG.md"
1 change: 1 addition & 0 deletions docs/security.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
--8<-- "SECURITY.md"
2 changes: 1 addition & 1 deletion entrypoint/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def main() -> None:
__title__ = "entrypoint"
__author__ = "nekitdev"
__license__ = "MIT"
__version__ = "1.2.1"
__version__ = "1.2.2"

from entrypoint.core import MAIN, EntryPoint, entrypoint, is_main

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "entrypoint"
version = "1.2.1"
version = "1.2.2"
description = "Decorated functions as entry points."
authors = ["nekitdev"]
license = "MIT"
Expand Down Expand Up @@ -115,7 +115,7 @@ warn_unused_ignores = false # compatibility

[tool.changelog]
name = "entrypoint"
version = "1.2.1"
version = "1.2.2"
url = "https://github.com/nekitdev/entrypoint"
directory = "changes"
output = "CHANGELOG.md"
Expand Down

0 comments on commit d25a726

Please sign in to comment.