Skip to content

Commit

Permalink
Merge pull request #235 from gilch/v0.4.0-rc-picks
Browse files Browse the repository at this point in the history
V0.4.0 rc picks
  • Loading branch information
gilch authored Jun 26, 2023
2 parents 4eae363 + a0babcb commit 2073a37
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ Python—Syntactic macro metaprogramming with full access to the Python ecosyste
- [Useful error messages](#useful-error-messages)
- [Syntax compatible with Emacs' `lisp-mode` and Parlinter](#syntax-compatible-with-emacs-lisp-mode-and-parlinter)
- [Standalone output](#standalone-output)
- [Reproducible builds](#reproducible-builds)
- [REPL](#repl)
- [Same-module macro helpers](#same-module-macro-helpers)
- [Modularity](#modularity)
Expand Down Expand Up @@ -393,7 +394,7 @@ Extensible Data Notation (EDN) is a subset of Clojure used for data exchange,
as JSON is to JavaScript, only more extensible.
Any standard Clojure editor should be able to handle EDN.

The separate [Garden of EDN](https://github.gilch/garden-of-edn)
The separate [Garden of EDN](https://github.com/gilch/garden-of-edn)
prototype contains a variety of EDN readers in Python,
and two of them read EDN into Hissp.

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

setuptools.setup(
name="hissp",
version=hissp.__version__,
version=hissp.VERSION,
description="It's Python with a Lissp.",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion src/hissp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@
del suppress


__version__ = "0.4.dev"
VERSION = "0.5.dev"
4 changes: 2 additions & 2 deletions src/hissp/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import traceback

import hissp.repl
from hissp import __version__ as ver
from hissp import VERSION
from hissp.reader import Lissp


Expand Down Expand Up @@ -60,7 +60,7 @@ def _no_interact(code, ns):

def _arg_parser():
root = argparse.ArgumentParser(
description=f"(Hissp {ver}) Starts a LisspREPL if there are no arguments."
description=f"(Hissp {VERSION}) Starts a LisspREPL if there are no arguments."
)
_ = root.add_argument
_(
Expand Down

0 comments on commit 2073a37

Please sign in to comment.