Skip to content

Commit

Permalink
version 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Apr 15, 2019
1 parent 2be4561 commit d542aac
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.PHONY: publish test coveralls lint

VERSION=0.9.0
VERSION=0.9.1
BRANCH=`git branch | grep '^*' | sed 's/* //'`
DATE=`date -uR`
SPEC_CHECKSUM=`md5sum spec/lips.spec.js | cut -d' ' -f 1`
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## LIPS is Pretty Simple

[![npm](https://img.shields.io/badge/npm-DEV-blue.svg)](https://www.npmjs.com/package/@jcubic/lips)
[![travis](https://travis-ci.org/jcubic/jquery.terminal.svg?branch=devel&40c49f76782cb75bb5bc79230bdb951585ecf92a)](https://travis-ci.org/jcubic/jquery.terminal)
[![Coverage Status](https://coveralls.io/repos/github/jcubic/lips/badge.svg?branch=devel&4605127ab4ae61bb9393947f167c7edb)](https://coveralls.io/github/jcubic/lips?branch=devel)
[![npm](https://img.shields.io/badge/npm-0.9.1-blue.svg)](https://www.npmjs.com/package/@jcubic/lips)
[![travis](https://travis-ci.org/jcubic/jquery.terminal.svg?branch=master&2be4561b06b6bc701c3d2ca69d1d334e9836cb14)](https://travis-ci.org/jcubic/jquery.terminal)
[![Coverage Status](https://coveralls.io/repos/github/jcubic/lips/badge.svg?branch=master&4605127ab4ae61bb9393947f167c7edb)](https://coveralls.io/github/jcubic/lips?branch=master)


LIPS is very simple Lisp, similar to Scheme written in JavaScript.
Expand Down
6 changes: 3 additions & 3 deletions dist/lips.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/**@license
* LIPS is Pretty Simple - simple scheme like lisp in JavaScript - v. DEV
* LIPS is Pretty Simple - simple scheme like lisp in JavaScript - v. 0.9.1
*
* Copyright (c) 2018-2019 Jakub T. Jankiewicz <https://jcubic.pl/me>
* Released under the MIT license
*
* includes unfetch by Jason Miller (@developit) MIT License
*
* build: Mon, 15 Apr 2019 10:19:18 +0000
* build: Mon, 15 Apr 2019 10:27:16 +0000
*/
(function () {
'use strict';
Expand Down Expand Up @@ -4973,7 +4973,7 @@ function _typeof(obj) {
}); // --------------------------------------

return {
version: 'DEV',
version: '0.9.1',
exec: exec,
parse: parse,
tokenize: tokenize,
Expand Down
6 changes: 3 additions & 3 deletions dist/lips.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jcubic/lips",
"version": "0.9.0",
"version": "0.9.1",
"description": "Simple Scheme Like Lisp in JavaScript",
"main": "src/lips.js",
"unpkg": "dist/lips.min.js",
Expand Down
2 changes: 1 addition & 1 deletion src/lips.js
Original file line number Diff line number Diff line change
Expand Up @@ -2673,7 +2673,7 @@
function ret(value) {
if (value && value.data || !(value instanceof Pair)) {
return value;
} else{
} else {
return evaluate(value, eval_args);
}
}
Expand Down

0 comments on commit d542aac

Please sign in to comment.