Skip to content

Commit

Permalink
rpn 8.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ConceptJunkie committed Sep 28, 2021
1 parent 1571a41 commit e5e59dc
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ rpnChilada supports arithmetic with arbitrary precision, powers and roots, logar
RPN isn't dead, although I figured it was time for a new release since with the
library updates, 8.4.0 didn't work any more.

rpn 8.5.0 is released: Big Clean-Up and Documentation Release!
rpn 8.5.1 is released: Big Clean-Up and Documentation Release!

Much more thorough argument validation has been implemented on all operators.
In addition, all non-constant operator function names now end with 'Operator',
Expand All @@ -29,7 +29,7 @@ About 70 new operators have been added.

---

The current release is 8.5.0.
The current release is 8.5.1.

See "rpn help settings" for more information.

Expand Down Expand Up @@ -101,6 +101,10 @@ p.s. rpn is licensed under the GNU GPL version 3.0. See (see (http://www.gnu.org

## Release Notes

8.5.1

Forgot to add Python 3.9 to the list of supported versions.

8.5.0

Big Clean-Up and Documentation Release!
Expand Down
4 changes: 4 additions & 0 deletions rpn/makeHelp.py
Original file line number Diff line number Diff line change
Expand Up @@ -1353,6 +1353,10 @@ def makeCommandExample( command, indent=0, slow=False ):

The 'recurrence' operator was removed, because it was a duplicate of the
'sequence' operator.

8.5.1

Forgot to add Python 3.9 to the list of supported versions.
''',
'license' :
'''
Expand Down
4 changes: 2 additions & 2 deletions rpn/rpnVersion.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
#******************************************************************************

PROGRAM_NAME = 'rpnChilada'
PROGRAM_VERSION = '8.5.0'
PROGRAM_VERSION_NAME = '8.5.0'
PROGRAM_VERSION = '8.5.1'
PROGRAM_VERSION_NAME = '8.5.1'
COPYRIGHT_MESSAGE = 'copyright (c) 2021 (1988), Rick Gutleber ([email protected])'

if PROGRAM_VERSION != PROGRAM_VERSION_NAME:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ def read( *paths ):
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering :: Mathematics',
'Environment :: Console',
],
Expand Down

0 comments on commit e5e59dc

Please sign in to comment.