Skip to content

Commit

Permalink
bump version to 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mscarey committed Oct 19, 2021
1 parent f3a6e9e commit f4b38e7
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
2 changes: 0 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@
# ones.
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.graphviz",
"sphinx.ext.inheritance_diagram",
"sphinx.ext.intersphinx",
"sphinx_autodoc_typehints",
"sphinx_rtd_theme",
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ context where it’s only part of a longer sentence.
The use of different placeholders doesn’t
cause :class:`~nettlesome.predicates.Predicate`\s to be considered to have
different meanings. The example below demonstrates this using
the :meth:`~nettlesome.predicates.Predicate.means` method, which tests
the :meth:`~nettlesome.predicates.PhraseABC.means` method, which tests
whether two Nettlesome objects have the same meaning.

>>> account_for_partnership = Predicate(content="$applicant opened a bank account for $partnership")
Expand Down
2 changes: 1 addition & 1 deletion nettlesome/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
from .quantities import Comparison, DateRange, IntRange, DecimalRange, UnitRange
from .statements import Statement, Assertion

__version__ = "0.5.1"
__version__ = "0.6.0"
2 changes: 1 addition & 1 deletion nettlesome/factors.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ class Factor(Term):
Factors can be compared as a group by including them
in :class:`~nettlesome.groups.FactorGroup`\s, unlike
:class:`~nettlesome.term.Term`\s that are not Factors.
:class:`~nettlesome.terms.Term`\s that are not Factors.
"""
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[metadata]

name = nettlesome
version = 0.5.1
version = 0.6.0
author= Matt Carey
author_email = [email protected]
description = simplified semantic reasoning
Expand Down

0 comments on commit f4b38e7

Please sign in to comment.