Skip to content

Commit

Permalink
version 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Apr 29, 2019
1 parent a8db601 commit 6590147
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.PHONY: publish test coveralls lint

VERSION=0.10.4
VERSION=0.11.0
BRANCH=`git branch | grep '^*' | sed 's/* //'`
DATE=`date -uR`
SPEC_CHECKSUM=`md5sum spec/lips.spec.js | cut -d' ' -f 1`
Expand Down Expand Up @@ -58,10 +58,10 @@ publish:
$(CD) npm && $(NPM) publish --access=public
$(RM) -rf npm

test: dist/lips.js
test:
$(JEST)

coveralls: test
coveralls:
$(CAT) ./coverage/lcov.info | $(COVERALLS)

lint:
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&dd31bfd0caf7f4c32c227b3a3477323f44f75219)](https://travis-ci.org/jcubic/jquery.terminal)
[![Coverage Status](https://coveralls.io/repos/github/jcubic/lips/badge.svg?branch=devel&01936c568f60f6ff814e51ee715ca50c)](https://coveralls.io/github/jcubic/lips?branch=devel)
[![npm](https://img.shields.io/badge/npm-0.11.0-blue.svg)](https://www.npmjs.com/package/@jcubic/lips)
[![travis](https://travis-ci.org/jcubic/jquery.terminal.svg?branch=master&a8db601f8f04a00efc81f0a368c259e7df3fd99c)](https://travis-ci.org/jcubic/jquery.terminal)
[![Coverage Status](https://coveralls.io/repos/github/jcubic/lips/badge.svg?branch=master&01936c568f60f6ff814e51ee715ca50c)](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,5 +1,5 @@
/**@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.11.0
*
* Copyright (c) 2018-2019 Jakub T. Jankiewicz <https://jcubic.pl/me>
* Released under the MIT license
Expand All @@ -21,7 +21,7 @@
* http://javascript.nwbox.com/ContentLoaded/
* http://javascript.nwbox.com/ContentLoaded/MIT-LICENSE
*
* build: Mon, 29 Apr 2019 16:34:09 +0000
* build: Mon, 29 Apr 2019 19:04:40 +0000
*/
(function () {
'use strict';
Expand Down Expand Up @@ -5342,7 +5342,7 @@ function _typeof(obj) {


var lips = {
version: 'DEV',
version: '0.11.0',
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.10.4",
"version": "0.11.0",
"description": "Simple Scheme Like Lisp in JavaScript",
"main": "src/lips.js",
"unpkg": "dist/lips.min.js",
Expand Down

0 comments on commit 6590147

Please sign in to comment.