Skip to content

Commit

Permalink
Bump version to 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
iafisher committed Oct 17, 2019
1 parent eb90cd9 commit 4bff070
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
Nothing yet!


## [1.0.2] - 2019-10-17
### Fixed
- Runtime errors on Python 3.7 due to use of typing library.


## [1.0.0] - 2019-08-28
### Added
- The `doc` debugging command, for viewing documentation on individual HERA operations.
Expand Down
4 changes: 3 additions & 1 deletion hera/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
from .vm import VirtualMachine


VERSION = "hera-py 1.0.2 for HERA version 2.4"


def external_main(argv=None) -> None:
"""
A wrapper around main that ignores its return value, which would otherwise be
Expand Down Expand Up @@ -406,7 +409,6 @@ def dump_state(vm: VirtualMachine, settings: Settings) -> None:
"--init": ["", "debug"],
}

VERSION = "hera-py 1.0.1 for HERA version 2.4"
CREDITS = (
VERSION
+ """
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

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

0 comments on commit 4bff070

Please sign in to comment.