Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
YamiDaisuke committed Jul 7, 2021
1 parent c523456 commit 0f6d371
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Documentation/Reference/Hermes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
This file was generated by [SourceDocs](https://github.com/eneko/SourceDocs) on 2021-07-07 22:28:07 +0000
2 changes: 1 addition & 1 deletion Documentation/Reference/HermesREPL/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
This file was generated by [SourceDocs](https://github.com/eneko/SourceDocs) on 2021-07-07 22:28:10 +0000
2 changes: 1 addition & 1 deletion Documentation/Reference/Monkey/README.md
Original file line number Diff line number Diff line change
@@ -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
This file was generated by [SourceDocs](https://github.com/eneko/SourceDocs) on 2021-07-07 22:27:26 +0000
2 changes: 1 addition & 1 deletion Documentation/Reference/MonkeyLang/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
This file was generated by [SourceDocs](https://github.com/eneko/SourceDocs) on 2021-07-07 22:27:51 +0000
2 changes: 1 addition & 1 deletion Sources/Hermes/Metadata.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0f6d371

Please sign in to comment.