Skip to content

Commit

Permalink
Bump dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
nekitdev committed Mar 15, 2024
1 parent 23fce85 commit 668e810
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.2.2
rev: v0.3.3
hooks:
- id: ruff
name: Run the Ruff linter
Expand All @@ -11,7 +11,7 @@ repos:
types_or: [python, pyi]

- repo: https://github.com/python-poetry/poetry
rev: 1.7.1
rev: 1.8.2
hooks:
- id: poetry-lock
stages: [push]
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

<!-- changelogging: start -->

## 2.0.3 (2024-03-15)

### Internal

- Bumped dependencies.

## 2.0.2 (2024-02-26)

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 = "^2.0.2"
entrypoint = "^2.0.3"
```

Alternatively, you can add it directly from the source:
Expand Down
2 changes: 0 additions & 2 deletions docs/reference.md
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
# Reference

::: entrypoint
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__ = "2.0.2"
__version__ = "2.0.3"

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

Expand Down
20 changes: 10 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "entrypoint"
version = "2.0.2"
version = "2.0.3"
description = "Decorated functions as entry points."
authors = ["nekitdev"]
license = "MIT"
Expand Down Expand Up @@ -33,31 +33,31 @@ include = "entrypoint"
python = ">= 3.8"

attrs = ">= 23.2.0"
named = ">= 1.4.1"
named = ">= 1.4.2"

typing-aliases = ">= 1.7.1"
typing-aliases = ">= 1.8.0"

[tool.poetry.group.format.dependencies]
ruff = "0.2.2"
ruff = "0.3.3"

[tool.poetry.group.check.dependencies]
mypy = "1.8.0"
mypy = "1.9.0"

[tool.poetry.group.check.dependencies.pre-commit]
version = "3.6.2"
python = ">= 3.9"

[tool.poetry.group.test.dependencies]
coverage = "7.4.3"
pytest = "8.0.1"
coverage = "7.4.4"
pytest = "8.1.1"
pytest-cov = "4.1.0"

[tool.poetry.group.docs]
optional = true

[tool.poetry.group.docs.dependencies]
mkdocs = "1.5.3"
mkdocs-material = "9.5.11"
mkdocs-material = "9.5.13"

[tool.poetry.group.docs.dependencies.mkdocstrings]
version = "0.24.0"
Expand All @@ -67,7 +67,7 @@ extras = ["python"]
optional = true

[tool.poetry.group.release.dependencies]
changelogging = "1.4.1"
changelogging = "1.4.2"

[tool.ruff]
line-length = 100
Expand Down Expand Up @@ -100,7 +100,7 @@ strict = true

[tool.changelogging]
name = "entrypoint"
version = "2.0.2"
version = "2.0.3"
url = "https://github.com/nekitdev/entrypoint"
directory = "changes"
output = "CHANGELOG.md"
Expand Down

0 comments on commit 668e810

Please sign in to comment.