Skip to content

Commit fa1bbdf

Browse files
committed
release version 0.7.7
1 parent c973ea9 commit fa1bbdf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+83
-91
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ MKDIR_P = mkdir -p
4949
######################################################################################
5050
# no user-serviceable parts below this line
5151
######################################################################################
52-
LIBSCHEMESH_SO=libschemesh_0.7.6.so
53-
LIBSCHEMESH_C_SO=libschemesh_c_0.7.6.so
52+
LIBSCHEMESH_SO=libschemesh_0.7.7.so
53+
LIBSCHEMESH_C_SO=libschemesh_c_0.7.7.so
5454

5555
SRCS=containers/containers.c eval.c posix/posix.c shell/shell.c
5656
OBJS=containers.o eval.o posix.o shell.o

bootstrap/bootstrap.ss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
;;; the Free Software Foundation; either version 2 of the License, or
66
;;; (at your option) any later version.
77

8-
(library (schemesh bootstrap (0 7 6))
8+
(library (schemesh bootstrap (0 7 7))
99
(export
1010
;; bootstrap.ss
1111
assert* assert-not* catch check check-not define-macro debugf debugf-port

bootstrap/functions.ss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
;; this is done by setting the top-level symbols sh-current-environment and sh-current-eval
1111
;; only if they are not bound yet.
1212

13-
(library (schemesh bootstrap functions (0 7 6))
13+
(library (schemesh bootstrap functions (0 7 7))
1414
(export
1515
generate-pretty-temporaries generate-pretty-temporary gensym-pretty
1616

@@ -156,7 +156,7 @@
156156

157157
;; return schemesh version
158158
(define (sh-version)
159-
(list 0 7 6))
159+
(list 0 7 7))
160160

161161
) ; close library
162162

containers/bitmap.ss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
;;;;;;;;; define Scheme type "bitmap", a fixed size bit vector ;;;;;;;;;;;;;
1010
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1111

12-
(library (schemesh containers bitmap (0 7 6))
12+
(library (schemesh containers bitmap (0 7 7))
1313
(export
1414
bitmap make-bitmap bitmap? bitmap-length bitmap-ref bitmap-set! bitmap-last-zero)
1515
(import

containers/bytespan.ss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
;;;;;;;;; define Scheme type "bytespan", a resizeable bytevector ;;;;;;;;;;;;;
1010
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1111

12-
(library (schemesh containers bytespan (0 7 6))
12+
(library (schemesh containers bytespan (0 7 7))
1313
(export
1414
list->bytespan bytevector->bytespan bytevector->bytespan* make-bytespan
1515
bytespan->bytevector bytespan->bytevector*!

containers/chargbuffer.ss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
;;;;; Implementation: contains two charspans, a "left" and a "right" ones ;;;;;;
1212
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1313

14-
(library (schemesh containers chargbuffer (0 7 6))
14+
(library (schemesh containers chargbuffer (0 7 7))
1515
(export
1616
in-chargbuffer list->chargbuffer string->chargbuffer string->chargbuffer*
1717
charspan->chargbuffer charspan->chargbuffer*

containers/charline.ss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
;;; the Free Software Foundation; either version 2 of the License, or
66
;;; (at your option) any later version.
77

8-
(library (schemesh containers charline (0 7 6))
8+
(library (schemesh containers charline (0 7 7))
99
(export
1010
charline charline? string->charline string->charline* charline->string
1111
assert-charline? charline-nl? charline-copy-on-write charline-empty?

containers/charlines.ss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
;;; the Free Software Foundation; either version 2 of the License, or
66
;;; (at your option) any later version.
77

8-
(library (schemesh containers charlines (0 7 6))
8+
(library (schemesh containers charlines (0 7 7))
99
(export
1010
charlines charlines? strings->charlines strings->charlines*
1111
assert-charlines? charlines-shallow-copy charlines-copy-on-write charlines-iterate

containers/charspan.ss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
;;;;;;;;;;; define Scheme type "charspan", a resizeable string ;;;;;;;;;;;;;;;
1111
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1212

13-
(library (schemesh containers charspan (0 7 6))
13+
(library (schemesh containers charspan (0 7 7))
1414
(export
1515
list->charspan string->charspan string->charspan* make-charspan
1616
charspan->string charspan->string*!

containers/containers.ss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88

99
;; define (schemesh containers) as a library that exports all its imported bindings
10-
(library-reexport (schemesh containers (0 7 6))
10+
(library-reexport (schemesh containers (0 7 7))
1111
(import (schemesh containers bitmap)
1212
(schemesh containers list)
1313
(schemesh containers misc)

0 commit comments

Comments
 (0)