From 4bff07081a6d0799f9f5fd887ede85b1f6feb034 Mon Sep 17 00:00:00 2001 From: Ian Fisher Date: Thu, 17 Oct 2019 16:43:36 -0700 Subject: [PATCH] Bump version to 1.0.2 --- CHANGELOG.md | 5 +++++ hera/main.py | 4 +++- setup.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 05875ab..ffa9fd9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/hera/main.py b/hera/main.py index f469e27..d2706b5 100644 --- a/hera/main.py +++ b/hera/main.py @@ -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 @@ -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 + """ diff --git a/setup.py b/setup.py index f91b4c1..68c0fed 100644 --- a/setup.py +++ b/setup.py @@ -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"