Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,20 @@ This project contains the code for building the Frame Language Transpiler - the

For details, see the [Release Notes](https://github.com/frame-lang/frame_transpiler/releases).

### Frame v0.7.4
### Frame v0.8.0

Frame now supports golang!
A new `frame_build` crate has been added to ease the integration of Frame with
Rust projects. See the crate-level documentation for more!

### Frame v0.7.5

The runtime system for the Rust backend now provides the path to and a checksum
of the `.frm` file that was used to generate the state machine.

### Frame v0.7.4

Frame now supports golang!


## Resources

Expand Down
2 changes: 1 addition & 1 deletion frame_build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "frame_build"
version = "0.7.5"
version = "0.8.0"
authors = ["Eric Walkingshaw <eric.walkingshaw@savant.com>"]
edition = "2018"

Expand Down
4 changes: 2 additions & 2 deletions frame_build/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
//! frame_build = "0.8"
//! ```
//!
//! You can run the default build process by adding creating the following `build.rs` file and
//! storing it at the root of your package.
//! You can run the default build process by adding the following `build.rs` file to the root of
//! your package.
//!
//! ```no_run
//! use anyhow::Result;
Expand Down
2 changes: 1 addition & 1 deletion frame_runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "frame_runtime"
version = "0.7.5"
version = "0.8.0"
authors = ["Eric Walkingshaw <eric.walkingshaw@savant.com>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion framec/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "framec"
version = "0.7.5"
version = "0.8.0"
authors = ["Mark Truluck <mark@frame-lang.org>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion framec/src/frame_c/compiler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ pub use crate::frame_c::visitors::TargetLanguage;
/* --------------------------------------------------------------------- */

static IS_DEBUG: bool = false;
static FRAMEC_VERSION: &str = "emitted from framec_v0.7.5";
static FRAMEC_VERSION: &str = "emitted from framec_v0.8.0";

/* --------------------------------------------------------------------- */

Expand Down
2 changes: 1 addition & 1 deletion framec_tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "framec_tests"
version = "0.7.5"
version = "0.8.0"
authors = ["Eric Walkingshaw <eric.wakingshaw@savant.com>", "Fernando De la Garza <fernando.delagarza@savant.com>"]
edition = "2018"

Expand Down