Skip to content

Commit 6be4391

Browse files
committed
version 1.0.0-beta.20
1 parent c1f592f commit 6be4391

File tree

10 files changed

+2687
-2681
lines changed

10 files changed

+2687
-2681
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.PHONY: publish test coveralls lint zero coverage codespell
22

3-
VERSION=1.0.0-beta.19
3+
VERSION=1.0.0-beta.20
44
VERSION_DASH=`echo -n "1.0.0-beta.19" | sed "s/-/%E2%80%93/"`
55
BRANCH=`git branch | grep '^*' | sed 's/* //'`
66
DATE=`date -uR`

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<h1 align="center">
2-
<img src="https://github.com/jcubic/lips/blob/devel/assets/lips.svg?raw=true"
2+
<img src="https://github.com/jcubic/lips/blob/master/assets/lips.svg?raw=true"
33
alt="LIPS - Scheme Based Powerful Lisp Language" />
44
</h1>
55

66
[![X (formerly Twitter) Follow](https://img.shields.io/twitter/follow/lips_lang)](https://twitter.com/lips_lang)
77
[![npm](https://img.shields.io/badge/npm-1.0.0%E2%80%93beta.19-blue.svg)](https://www.npmjs.com/package/@jcubic/lips)
88
![1.0.0 Complete](https://img.shields.io/github/milestones/progress-percent/jcubic/lips/1?label=1.0.0%20Complete)
9-
[![Build and test](https://github.com/jcubic/lips/actions/workflows/build.yaml/badge.svg?branch=devel&event=push)](https://github.com/jcubic/lips/actions/workflows/build.yaml)
10-
[![Coverage Status](https://coveralls.io/repos/github/jcubic/lips/badge.svg?branch=devel&d99e59bdd4421bb215d5bb781449d63f)](https://coveralls.io/github/jcubic/lips?branch=devel)
9+
[![Build and test](https://github.com/jcubic/lips/actions/workflows/build.yaml/badge.svg?branch=master&event=push)](https://github.com/jcubic/lips/actions/workflows/build.yaml)
10+
[![Coverage Status](https://coveralls.io/repos/github/jcubic/lips/badge.svg?branch=master&dd93e2ed5fe4147ff629f2673e56de90)](https://coveralls.io/github/jcubic/lips?branch=master)
1111
[![Join Gitter Chat](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/jcubic/lips)
1212
![NPM Download Count](https://img.shields.io/npm/dm/@jcubic/lips)
1313
![JSDelivr Download count](https://img.shields.io/jsdelivr/npm/hm/@jcubic/lips)
@@ -162,7 +162,7 @@ npm install -g @jcubic/lips@beta
162162

163163
you can run the interpreter from the terminal:
164164

165-
![LIPS: Scheme interactive terminal](https://github.com/jcubic/lips/blob/devel/assets/screencast.gif?raw=true)
165+
![LIPS: Scheme interactive terminal](https://github.com/jcubic/lips/blob/master/assets/screencast.gif?raw=true)
166166

167167

168168
You can also run code in a string with:
@@ -201,7 +201,7 @@ Executables also return a S-Expression according to SRFI-176 use `lips --version
201201

202202
## FOSDEM'23 Presentation [Video]
203203

204-
[![FOSDEM 2023 - LIPS Scheme: Powerful introspection and extensibility](https://github.com/jcubic/lips/blob/devel/assets/fosdem-intro.png?raw=true)](https://fosdem.org/2023/schedule/event/lipsscheme/)
204+
[![FOSDEM 2023 - LIPS Scheme: Powerful introspection and extensibility](https://github.com/jcubic/lips/blob/master/assets/fosdem-intro.png?raw=true)](https://fosdem.org/2023/schedule/event/lipsscheme/)
205205

206206
## Limitations
207207

@@ -210,7 +210,7 @@ Because LIPS is tree walking interpreter, sometimes it may be slow. Especially i
210210
process long arrays and use callback function. If the array is quite large each piece of code
211211
inside the callback may slow down the processing. For example see:
212212

213-
script [reference.scm](https://github.com/jcubic/lips/blob/devel/scripts/reference.scm)
213+
script [reference.scm](https://github.com/jcubic/lips/blob/master/scripts/reference.scm)
214214

215215
That generates reference documentation for all builtin functions and macros.
216216
The slow part is `(names.sort name-compare)` (`Array::sort`) that take quite time to calculate,

0 commit comments

Comments
 (0)