Skip to content

Commit 7c12e3d

Browse files
committed
chore: update crate version to 0.3.1
1 parent 6560099 commit 7c12e3d

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "scriptful"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["The Scriptful Project Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ The whole library is built around these concepts:
2020
- __[Operator system]__: a function that decides how each operator will mutate a given stack.
2121
- __[Script]__: an ordered sequence of items (values and operators) that can be passed to an operator system for operating on a given stack.
2222
- __[Machine]__: a convenient wrapper around a stack that enables multiple modes of operation.
23+
- __[Codec]__: a set of methods for encoding and decoding scripts and items, normally into and from binary formats.
2324

2425
Using this library is as easy as:
2526

src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
//! ___Scriptful_ is a minimalist `no_std` stack machine for interpreting scripts written using domain specific interpreted languages.__
1+
//! ___Scriptful_ is a minimalist `no_std`, zero dependency stack machine for interpreting scripts written with domain
2+
//! specific interpreted languages.__
23
//!
34
//! This library is heavily inspired by the [Forth] programming language and [Script][BitcoinScript]
45
//! (the scripting language in Bitcoin).

0 commit comments

Comments
 (0)