Skip to content

Commit 4eed0ef

Browse files
authored
Merge pull request #100 from RhetTbull/release_v1_3_1
Release 1.3.1 to fix for python 3.11 #98
2 parents 3489025 + 046ae5a commit 4eed0ef

File tree

5 files changed

+20
-18
lines changed

5 files changed

+20
-18
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.3.0
2+
current_version = 1.3.1
33
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
44
serialize = {major}.{minor}.{patch}
55

dodo.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ def task_update_readme():
88
return {"actions": ["poetry run cog -r README.md"]}
99

1010

11-
def task_test():
12-
"""Run tests"""
13-
return {"actions": ["poetry run pytest --doctest-glob=README.md tests/"]}
11+
# def task_test():
12+
# """Run tests"""
13+
# return {"actions": ["poetry run pytest --doctest-glob=README.md tests/"]}
1414

1515

1616
def task_docs():

osxmetadata/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
""" osxmetadata version """
22

3-
__version__ = "1.3.0"
3+
__version__ = "1.3.1"

poetry.lock

Lines changed: 13 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "osxmetadata"
3-
version = "1.3.0"
3+
version = "1.3.1"
44
description = "Read and write meta data, such as tags/keywords, Finder comments, etc. on MacOS files"
55
authors = ["Rhet Turnbull <[email protected]>"]
66
license = "MIT License"
@@ -41,7 +41,7 @@ cogapp = "^3.3.0"
4141
doit = "^0.36.0"
4242
mkdocs = "^1.4.0"
4343
mkdocs-material = "^8.5.4"
44-
mkdocstrings = { extras = ["python"], version = "^0.19.0" }
44+
mkdocstrings = { extras = ["python"], version = "^0.23.0" }
4545
pyinstaller = "^5.6.2"
4646
pytest = "^7.1.3"
4747
pytest-cov = "^4.0.0"

0 commit comments

Comments
 (0)