seam

Symbolic-Expressions As Markup.
git clone git://git.knutsen.co/seam
Log | Files | Refs | README | LICENSE

commit 336413eb969961cfe49635007c62408816174f3f
parent 772a05956807397bf7ef21514b748542a3a39448
Author: Demonstrandum <moi@knutsen.co>
Date:   Sat, 10 Oct 2020 20:14:14 +0100

Bump version.

Diffstat:
MCargo.lock | 2+-
Msrc/lib.rs | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Cargo.lock b/Cargo.lock @@ -83,7 +83,7 @@ dependencies = [ [[package]] name = "seam" -version = "0.1.1" +version = "0.1.2" dependencies = [ "chrono", "colored", diff --git a/src/lib.rs b/src/lib.rs @@ -6,7 +6,7 @@ use parse::{expander, parser, lexer}; use std::error::Error; use std::{fs, path::Path}; -pub const VERSION : (u8, u8, u8) = (0, 1, 1); +pub const VERSION : (u8, u8, u8) = (0, 1, 2); pub fn parse<P: AsRef<Path>>(string : String, source : Option<P>) -> Result<parser::ParseTree, Box<dyn Error>> {