Skip to content

Commit

Permalink
Adjust scripts to follow expand and contract pattern---better backwar…
Browse files Browse the repository at this point in the history
…ds compatibility by forcing string type in pyproject.toml
  • Loading branch information
comrumino committed Aug 4, 2022
1 parent 0bfeec3 commit fc3ec13
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.rst
@@ -1,8 +1,8 @@
5.2.2
5.2.3
=====
Date: 2022-08-03

- `#503`_ `rpyc_classic.py` can now be resolved as `rpyc_classic` (limitations on pyproject.toml syntax)
- `#503`_ `rpyc_classic.py` and `rpyc_registry.py` can now be resolved without the suffix as well.

.. _#503: https://github.com/tomerfiliba-org/rpyc/issues/503

Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Expand Up @@ -49,6 +49,8 @@ Source = "https://github.com/tomerfiliba-org/rpyc"
[project.scripts]
rpyc_classic = "rpyc.cli.rpyc_classic:main"
rpyc_registry = "rpyc.cli.rpyc_registry:main"
"rpyc_classic.py" = "rpyc.cli.rpyc_classic:main"
"rpyc_registry.py" = "rpyc.cli.rpyc_registry:main"

[tool.hatch.version]
path = "rpyc/version.py"
Expand Down
2 changes: 1 addition & 1 deletion rpyc/version.py
@@ -1,3 +1,3 @@
__version__ = '5.2.2'
__version__ = '5.2.3'
version = tuple(__version__.split('.'))
release_date = "2022-08-03"

0 comments on commit fc3ec13

Please sign in to comment.