Skip to content

Commit e4478d9

Browse files
committed
fix toml syntax
1 parent 9f08b89 commit e4478d9

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors:
55
given-names: "Thomas Andrew"
66
orcid: "https://orcid.org/0000-0001-8962-8571"
77
title: "Fast Stylometry (Computer software)"
8-
version: 1.0.12
8+
version: 1.0.13
99
doi: 10.5281/zenodo.11096941
1010
date-released: 2024-05-01
1111
url: "https://fastdatascience.com/fast-stylometry-python-library"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ A BibTeX entry for LaTeX users is:
212212
```
213213
@software{faststylometry,
214214
author = {Wood, T.A.},
215-
title = {Fast Stylometry (Computer software), Version 1.0.12},
215+
title = {Fast Stylometry (Computer software), Version 1.0.13},
216216
year = {2024},
217217
url = {https://fastdatascience.com/fast-stylometry-python-library/},
218218
doi = {10.5281/zenodo.11096941},

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "faststylometry"
3-
version = "1.0.12"
3+
version = "1.0.13"
44
description = 'Python library for calculating the Burrows Delta.'
55
readme = "README.md"
66
keywords = ['stylometry', 'nlp', 'burrows delta', 'delta', 'forensic stylometry', 'natural language processing']
@@ -43,9 +43,9 @@ dependencies = [
4343
dev = ["check-manifest", "pytest"]
4444

4545
[project.urls]
46-
"Documentation" = "https://fastdatascience.com/fast-stylometry-python-library",
47-
"Bug Reports" = "https://github.com/fastdatascience/faststylometry/issues",
48-
"Source Code" = "https://github.com/fastdatascience/faststylometry",
46+
"Documentation" = "https://fastdatascience.com/fast-stylometry-python-library"
47+
"Bug Reports" = "https://github.com/fastdatascience/faststylometry/issues"
48+
"Source Code" = "https://github.com/fastdatascience/faststylometry"
4949

5050
[build-system]
5151
requires = ["setuptools>=46.4.0", "wheel", "twine"]

src/faststylometry/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
2828
'''
2929

30-
__version__ = "1.0.12"
30+
__version__ = "1.0.13"
3131

3232

3333
from faststylometry.corpus import Corpus

0 commit comments

Comments
 (0)