Skip to content

Commit

Permalink
Version 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
iafisher committed Dec 22, 2020
1 parent d0a2552 commit 8ff5134
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
7 changes: 3 additions & 4 deletions hera/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,14 @@
import sys

from .assembler import assemble_and_print
from .data import HERAError, Settings, VOLUME_QUIET, VOLUME_VERBOSE
from .data import VOLUME_QUIET, VOLUME_VERBOSE, HERAError, Settings
from .debugger import debug
from .loader import load_program_from_file
from .op import disassemble
from .utils import format_int, Path, read_file_or_stdin, register_to_index
from .utils import Path, format_int, read_file_or_stdin, register_to_index
from .vm import VirtualMachine


VERSION = "hera-py 1.0.4 for HERA version 2.4"
VERSION = "hera-py 1.0.5 for HERA version 2.4"


def external_main(argv=None) -> None:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os
from setuptools import find_packages, setup

from setuptools import find_packages, setup

dpath = os.path.dirname(os.path.realpath(__file__))
with open(os.path.join(dpath, "README.md"), "r") as f:
Expand All @@ -9,7 +9,7 @@

setup(
name="hera-py",
version="1.0.4",
version="1.0.5",
description=(
"Interpreter for the Haverford Educational RISC Architecture (HERA) "
"assembly language"
Expand Down

0 comments on commit 8ff5134

Please sign in to comment.