Skip to content

Commit

Permalink
Bump version 0.1.9 -> 0.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
bengtl committed Feb 28, 2024
1 parent ab3bc9b commit b38d648
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,12 @@ repos:
hooks:
- id: ruff
args: [--fix]
exclude: '__init__.py'


- repo: https://github.com/pre-commit/mirrors-mypy
rev: 'v1.5.1'
hooks:
- id: mypy
additional_dependencies: [types-requests==2.31.0.1]
args: [--follow-imports=skip]
1 change: 1 addition & 0 deletions mypy.ini
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[mypy]
disallow_any_generics = False
exclude = src/microjson/utils.py
5 changes: 2 additions & 3 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.poetry]
name = "microjson"
version = "0.1.9"
version = "0.1.10"
description = "MicroJSON is a library for validating, parsing, and manipulating MicroJSON data."
readme = "README_short.md"
authors = ["Bengt Ljungquist <[email protected]>"]
Expand Down Expand Up @@ -49,14 +49,13 @@ ruff = "^0.0.274"
mypy = "^1.4.0"
mkdocs = "^1.5.3"
mkdocstrings = "^0.23.0"
bfio = {version = "2.3.6", extras = ["all"]}


[tool.pytest.ini_options]
testpaths = ["tests/"]

[tool.bumpver]
current_version = "0.1.9"
current_version = "0.1.10"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
Expand Down
7 changes: 4 additions & 3 deletions src/microjson/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from .model import MicroJSON, GeoJSON
from .utils import gather_example_files,OmeMicrojsonModel, MicrojsonBinaryModel

__version__ = "0.1.9"
from .utils import gather_example_files
from .utils import OmeMicrojsonModel
from .utils import MicrojsonBinaryModel

__version__ = "0.1.10"

0 comments on commit b38d648

Please sign in to comment.