Skip to content

Commit 44984bb

Browse files
committed
Fix version number (still at 0.7.0), and README notes
1 parent 02eb958 commit 44984bb

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
The **plusminus** package provides a ready-to-run arithmetic parser and evaluator,
44
based on [`pyparsing`](https://pyparsing-docs.readthedocs.io/en/latest/index.html)'s
5-
[`infixNotation`](https://pyparsing-docs.readthedocs.io/en/latest/pyparsing.html#pyparsing.infixNotation)
5+
[`infix_notation`](https://pyparsing-docs.readthedocs.io/en/latest/pyparsing.html#pyparsing.infixNotation)
66
helper method.
77

88
Strings containing 6-function arithmetic expressions can be parsed and evaluated using the
9-
[`BaseArithmeticParser`](https://github.com/pyparsing/plusminus/blob/master/doc/arithmetic_parser.md#the-core-basicarithmeticparser):
9+
[`ArithmeticParser`](https://github.com/pyparsing/plusminus/blob/master/doc/arithmetic_parser.md#the-core-basicarithmeticparser):
1010

1111
```python
1212
from plusminus import BaseArithmeticParser

plusminus/plusminus.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
"""
55
plusminus
66
7-
plusminus is a module that builds on the pyparsing infixNotation helper method to build easy-to-code and easy-to-use
8-
parsers for parsing and evaluating infix arithmetic expressions. plusminus's ArithmeticParser class includes
7+
plusminus is a module that builds on the pyparsing infix_notation helper method to build easy-to-code and easy-to-use
8+
parsers for parsing and evaluating infix arithmetic expressions. plusminus's BaseArithmeticParser class includes
99
separate parse and evaluate methods, handling operator precedence, override with parentheses, presence or absence of
1010
whitespace, built-in functions, and pre-defined and user-defined variables, functions, and operators.
1111
12-
Copyright 2020-2021, by Paul McGuire
12+
Copyright 2020-2022, by Paul McGuire
1313
1414
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
1515
documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
@@ -57,7 +57,7 @@
5757
DEFAULT_BASE_FUNCTION_MAP""".split()
5858

5959
VersionInfo = namedtuple("VersionInfo", "major minor micro releaselevel serial")
60-
__version_info__ = VersionInfo(0, 8, 0, "final", 0)
60+
__version_info__ = VersionInfo(0, 7, 0, "final", 0)
6161
__version__ = ".".join(map(str, __version_info__[:3]))
6262

6363
# increase recursion limit if not already modified

0 commit comments

Comments
 (0)