Skip to content

Commit

Permalink
version 1.0.0-beta.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Aug 14, 2020
1 parent 2e7b60e commit 38239ce
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions Makefile
@@ -1,7 +1,7 @@
.PHONY: publish test coveralls lint

VERSION=1.0.0-beta.1
VERSION_DASH=`echo -n "1.0.0-beta.1" | sed "s/-/%E2%80%93/"`
VERSION=1.0.0-beta.2
VERSION_DASH=`echo -n "1.0.0-beta.2" | sed "s/-/%E2%80%93/"`
BRANCH=`git branch | grep '^*' | sed 's/* //'`
DATE=`date -uR`
YEAR=`date +%Y`
Expand Down
6 changes: 3 additions & 3 deletions README.md
@@ -1,7 +1,7 @@
![LIPS - Scheme Based Powerful Lisp Language](https://github.com/jcubic/lips/blob/master/assets/lips.svg?raw=true)

[![npm](https://img.shields.io/badge/npm-1.0.0%E2%80%93beta.1-blue.svg)](https://www.npmjs.com/package/@jcubic/lips)
[![travis](https://travis-ci.org/jcubic/lips.svg?branch=master&f657b12dcfdfaa886988b0b8b7bfb7a4a437da4b)](https://travis-ci.org/jcubic/lips)
[![npm](https://img.shields.io/badge/npm-1.0.0%E2%80%93beta.2-blue.svg)](https://www.npmjs.com/package/@jcubic/lips)
[![travis](https://travis-ci.org/jcubic/lips.svg?branch=master&2e7b60eb3b8909eaac32c72dd9687e904e9d7132)](https://travis-ci.org/jcubic/lips)
[![Coverage Status](https://coveralls.io/repos/github/jcubic/lips/badge.svg?branch=master&2c48907438a7265935a7b21e6931008d)](https://coveralls.io/github/jcubic/lips?branch=master)
[![Join Gitter Chat](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/jcubic/lips)

Expand Down Expand Up @@ -124,7 +124,7 @@ $ lips
| | / ^ \ |___||_||_| <___/ | |
\_\ /_/ \_\ /_/
LIPS Scheme Interpreter 1.0.0-beta.1 (2020-08-14)
LIPS Scheme Interpreter 1.0.0-beta.2 (2020-08-14)
Copyright (c) 2018-2020 Jakub T. Jankiewicz <https://jcubic.pl/me>
Type (env) to see environment with functions macros and variables.
Expand Down
14 changes: 7 additions & 7 deletions dist/lips.js
Expand Up @@ -4,7 +4,7 @@
* | | \ \ | | | || . \/ __> | |
* | | > \ | |_ | || _/\__ \ | |
* | | / ^ \ |___||_||_| <___/ | |
* \_\ /_/ \_\ /_/ v. 1.0.0-beta.1
* \_\ /_/ \_\ /_/ v. 1.0.0-beta.2
*
* LIPS is Pretty Simple - Scheme based Powerful LISP in JavaScript
*
Expand All @@ -31,7 +31,7 @@
* Copyright (c) 2014-present, Facebook, Inc.
* released under MIT license
*
* build: Fri, 14 Aug 2020 09:12:03 +0000
* build: Fri, 14 Aug 2020 10:04:02 +0000
*/
(function () {
'use strict';
Expand Down Expand Up @@ -9844,10 +9844,10 @@

var banner = function () {
// Rollup tree-shaking is removing the variable if it's normal string because
// obviously 'Fri, 14 Aug 2020 09:12:03 +0000' == '{{' + 'DATE}}'; can be removed
// obviously 'Fri, 14 Aug 2020 10:04:02 +0000' == '{{' + 'DATE}}'; can be removed
// but disablig Tree-shaking is adding lot of not used code so we use this
// hack instead
var date = LString('Fri, 14 Aug 2020 09:12:03 +0000').valueOf();
var date = LString('Fri, 14 Aug 2020 10:04:02 +0000').valueOf();

var _date = date === '{{' + 'DATE}}' ? new Date() : new Date(date);

Expand All @@ -9859,7 +9859,7 @@

var _build = [_year, _format(_date.getMonth() + 1), _format(_date.getDate())].join('-');

var banner = "\n __ __ __\n / / \\ \\ _ _ ___ ___ \\ \\\n| | \\ \\ | | | || . \\/ __> | |\n| | > \\ | |_ | || _/\\__ \\ | |\n| | / ^ \\ |___||_||_| <___/ | |\n \\_\\ /_/ \\_\\ /_/\n\nLIPS Interpreter 1.0.0-beta.1 (".concat(_build, ") <https://git.io/lips-scheme>\nCopyright (c) 2018-").concat(_year, " Jakub T. Jankiewicz\n\nType (env) to see environment with functions macros and variables.\nYou can also use (help name) to display help for specic function or macro.\n").replace(/^.*\n/, '');
var banner = "\n __ __ __\n / / \\ \\ _ _ ___ ___ \\ \\\n| | \\ \\ | | | || . \\/ __> | |\n| | > \\ | |_ | || _/\\__ \\ | |\n| | / ^ \\ |___||_||_| <___/ | |\n \\_\\ /_/ \\_\\ /_/\n\nLIPS Interpreter 1.0.0-beta.2 (".concat(_build, ") <https://git.io/lips-scheme>\nCopyright (c) 2018-").concat(_year, " Jakub T. Jankiewicz\n\nType (env) to see environment with functions macros and variables.\nYou can also use (help name) to display help for specic function or macro.\n").replace(/^.*\n/, '');
return banner;
}(); // -------------------------------------------------------------------------
// to be used with string function when code is minified
Expand All @@ -9882,9 +9882,9 @@
LString.__className = 'string'; // -------------------------------------------------------------------------

var lips = {
version: '1.0.0-beta.1',
version: '1.0.0-beta.2',
banner: banner,
date: 'Fri, 14 Aug 2020 09:12:03 +0000',
date: 'Fri, 14 Aug 2020 10:04:02 +0000',
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
@@ -1,6 +1,6 @@
{
"name": "@jcubic/lips",
"version": "1.0.0-beta.1",
"version": "1.0.0-beta.2",
"description": "Simple Scheme Like Lisp in JavaScript",
"main": "src/lips.js",
"unpkg": "dist/lips.min.js",
Expand Down

0 comments on commit 38239ce

Please sign in to comment.