Skip to content

Commit c44b7d1

Browse files
author
Jeff Aigner
committed
Adding CHANGELOG. updating versioning scheme
1 parent 54a68db commit c44b7d1

File tree

3 files changed

+32
-2
lines changed

3 files changed

+32
-2
lines changed

CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
2+
Version 1.0.2.1
3+
===============
4+
* Fixing version numbering scheme
5+
* Added CHANGELOG.md
6+
7+
8+
Version 1.0.2.0
9+
===============
10+
* Added code profiling
11+
* Removed extraneous code
12+
* Added parser/eval recovers
13+
* Added command line flags
14+
15+
16+
Version 1.0.1.0
17+
===============
18+
* Added REPL
19+
* Added lambda functions
20+
* Updating buitlins to be variable length
21+
22+
23+
Version 1.0.0.0
24+
===============
25+
* Initial release to public, eval and basic tests working
26+

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# golisp
2-
LISP interpreter written in Go
2+
LISP interpreter written in Go. See CHANGELOG.md for recent changes.
33

44
It currently supports a subset of LISP, but important features already work:
55

lisp.go

+5-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ import (
1010
"time"
1111
)
1212

13+
const (
14+
VERSION = "golisp v1.0.2.1"
15+
)
16+
1317
func removeEmpty(tokens []string) []string {
1418
var result []string
1519
for _, c := range tokens {
@@ -224,7 +228,7 @@ func main() {
224228
flag.Parse()
225229

226230
if *show_version {
227-
fmt.Println("golisp v0.1")
231+
fmt.Println(VERSION)
228232
os.Exit(0)
229233
}
230234

0 commit comments

Comments
 (0)