From c6a7b0be9ebdddb58a03749705987cb3058060d3 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 30 Jul 2018 19:39:32 -0700 Subject: Added compatibility for 2.5.5.5 (file hash changes). --- lib/base64.nom | 2 +- lib/consolecolor.nom | 2 +- lib/file_hash.nom | 2 +- lib/object.nom | 2 +- lib/os.nom | 2 +- lib/training_wheels.nom | 4 ++-- lib/version.nom | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) (limited to 'lib') diff --git a/lib/base64.nom b/lib/base64.nom index a65a99d..7f5e2de 100644 --- a/lib/base64.nom +++ b/lib/base64.nom @@ -1,4 +1,4 @@ -#!/usr/bin/env nomsu -V2.5.5.4 +#!/usr/bin/env nomsu -V2.5.5.5 # This file defines actions for encoding/decoding base 64, as specified in: https://tools.ietf.org/html/rfc4648 diff --git a/lib/consolecolor.nom b/lib/consolecolor.nom index 1fdf4b2..dd07647 100644 --- a/lib/consolecolor.nom +++ b/lib/consolecolor.nom @@ -1,4 +1,4 @@ -#!/usr/bin/env nomsu -V2.5.5.4 +#!/usr/bin/env nomsu -V2.5.5.5 # This file defines actions for ANSI console color escape codes. diff --git a/lib/file_hash.nom b/lib/file_hash.nom index 2f9076e..32f6703 100644 --- a/lib/file_hash.nom +++ b/lib/file_hash.nom @@ -1,4 +1,4 @@ -#!/usr/bin/env nomsu -V2.5.5.4 +#!/usr/bin/env nomsu -V2.5.5.5 # This file defines some actions for hashing files and looking up files by hash. diff --git a/lib/object.nom b/lib/object.nom index 8c33f36..dd99109 100644 --- a/lib/object.nom +++ b/lib/object.nom @@ -1,4 +1,4 @@ -#!/usr/bin/env nomsu -V2.5.5.4 +#!/usr/bin/env nomsu -V2.5.5.5 # This file contains the implementation of an Object-Oriented programming system. diff --git a/lib/os.nom b/lib/os.nom index a7df0a9..8bbc7c5 100644 --- a/lib/os.nom +++ b/lib/os.nom @@ -1,4 +1,4 @@ -#!/usr/bin/env nomsu -V2.5.5.4 +#!/usr/bin/env nomsu -V2.5.5.5 # This file defines some actions that interact with the operating system and filesystem. diff --git a/lib/training_wheels.nom b/lib/training_wheels.nom index 253f601..46ffecd 100644 --- a/lib/training_wheels.nom +++ b/lib/training_wheels.nom @@ -1,4 +1,4 @@ -#!/usr/bin/env nomsu -V2.5.5.4 +#!/usr/bin/env nomsu -V2.5.5.5 # This file contains a set of definitions that bring some familiar language features from other languages into nomsu (e.g. "||" and "continue") @@ -15,7 +15,7 @@ parse [%a || %b] as (%a or %b) parse [%a && %b] as (%a and %b) parse [continue] as (do next) parse [break] as (stop) -parse [let %thing = %value in %action] as (with local {%thing: %value}) +parse [let %thing = %value in %action] as (with local {%thing:%value}) parse [print %, println %] as (say %) parse [error!, panic!, fail!, abort!] as (barf!) parse [error %, panic %, fail %, abort %] as (barf %) diff --git a/lib/version.nom b/lib/version.nom index 1e4389e..a871ac1 100644 --- a/lib/version.nom +++ b/lib/version.nom @@ -1,3 +1,3 @@ -#!/usr/bin/env nomsu -V2.5.5.4 +#!/usr/bin/env nomsu -V2.5.5.5 # This file sets the current library version. lua> "NOMSU_LIB_VERSION = 5" -- cgit v1.2.3