diff --git a/CHANGELOG.md b/CHANGELOG.md index aced3d2..cf8feb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.1] - 2021-07-07 +### Changed +- The name of "Hermes" class to "HermesMetadata" to avoid name conflicts with the package name + ## [2.0.0] - 2021-06-06 ### Added - A compiler and VM implementation for Monkey lang diff --git a/Documentation/Reference/Hermes/README.md b/Documentation/Reference/Hermes/README.md index 325645b..c3aea71 100644 --- a/Documentation/Reference/Hermes/README.md +++ b/Documentation/Reference/Hermes/README.md @@ -101,4 +101,4 @@ - [OpCode](typealiases/OpCode.md) - [Token.Kind](typealiases/Token.Kind.md) -This file was generated by [SourceDocs](https://github.com/eneko/SourceDocs) on 2021-07-05 23:06:24 +0000 \ No newline at end of file +This file was generated by [SourceDocs](https://github.com/eneko/SourceDocs) on 2021-07-07 22:28:07 +0000 \ No newline at end of file diff --git a/Documentation/Reference/HermesREPL/README.md b/Documentation/Reference/HermesREPL/README.md index 8d27684..f850b6d 100644 --- a/Documentation/Reference/HermesREPL/README.md +++ b/Documentation/Reference/HermesREPL/README.md @@ -20,4 +20,4 @@ - [TerminalController](extensions/TerminalController.md) - [UInt8](extensions/UInt8.md) -This file was generated by [SourceDocs](https://github.com/eneko/SourceDocs) on 2021-07-05 23:06:26 +0000 \ No newline at end of file +This file was generated by [SourceDocs](https://github.com/eneko/SourceDocs) on 2021-07-07 22:28:10 +0000 \ No newline at end of file diff --git a/Documentation/Reference/Monkey/README.md b/Documentation/Reference/Monkey/README.md index 3be3d29..24dcf23 100644 --- a/Documentation/Reference/Monkey/README.md +++ b/Documentation/Reference/Monkey/README.md @@ -1,3 +1,3 @@ # Reference Documentation -This file was generated by [SourceDocs](https://github.com/eneko/SourceDocs) on 2021-07-05 23:05:39 +0000 \ No newline at end of file +This file was generated by [SourceDocs](https://github.com/eneko/SourceDocs) on 2021-07-07 22:27:26 +0000 \ No newline at end of file diff --git a/Documentation/Reference/MonkeyLang/README.md b/Documentation/Reference/MonkeyLang/README.md index 9894aa9..26397d9 100644 --- a/Documentation/Reference/MonkeyLang/README.md +++ b/Documentation/Reference/MonkeyLang/README.md @@ -45,4 +45,4 @@ - [MonkeyEvaluator.ControlTransfer](typealiases/MonkeyEvaluator.ControlTransfer.md) - [ObjectType](typealiases/ObjectType.md) -This file was generated by [SourceDocs](https://github.com/eneko/SourceDocs) on 2021-07-05 23:06:06 +0000 \ No newline at end of file +This file was generated by [SourceDocs](https://github.com/eneko/SourceDocs) on 2021-07-07 22:27:51 +0000 \ No newline at end of file diff --git a/Sources/Hermes/Metadata.swift b/Sources/Hermes/Metadata.swift index d9ae0c6..e56a891 100644 --- a/Sources/Hermes/Metadata.swift +++ b/Sources/Hermes/Metadata.swift @@ -71,7 +71,7 @@ extension HermesMetadata { /// The current version of the byte code supported by this library public static var byteCodeVersion: SemVersion { /// TODO: Generate this dynamically during compilation - SemVersion(major: 2, minor: 0, patch: 0) + SemVersion(major: 2, minor: 0, patch: 1) } /// A magic number to mark a binary file valid for the Hermes VM