Skip to content

Commit

Permalink
Release 2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rkoeninger committed Aug 1, 2019
1 parent 85e5b7c commit 3fa5e7c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
12 changes: 8 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).

## [Unreleased]

## [2.5.0] - 2019-08-01

### Added
- `shen-cl.load-lisp`, `shen-cl.eval-lisp` that load and evals Lisp code in string form from Shen.
- `LOAD-SHEN` that loads Shen code from Lisp.
Expand All @@ -23,11 +25,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).

## [2.4.0] - 2018-10-08

Updated to Shen Open Source Kernel 21.1.
**Updated to Shen Open Source Kernel 21.1**

## [2.3.0] - 2018-06-01

Updated to Shen Open Source Kernel 21.0.
**Updated to Shen Open Source Kernel 21.0**

### Added
- `make release` command that creates os-specific archive of compiled binaries.
Expand Down Expand Up @@ -58,21 +60,23 @@ Updated to Shen Open Source Kernel 21.0.

## [2.1.0] - 2017-05-22

**Updated to Shen Open Source Kernel 20.1**

### Added
- Support for CCL (Clozure Common Lisp).
- Makefile.
- CHANGELOG.
- Travis-CI build script.

### Changed
- Updated to ShenOS 20.1.
- Made built process dependent on pre-built KL from https://github.com/Shen-Language/shen-sources/releases.
- Script arguments are now preceded by `-l`, all args go in `*argv*`.
- Made CLisp build output an executable like CCL and SBCL do.
- Cleaned up `backend.lsp`, as `backend.shen` was removed.
- Expanded README.

[Unreleased]: https://github.com/Shen-Language/shen-cl/compare/v2.4.0...HEAD
[Unreleased]: https://github.com/Shen-Language/shen-cl/compare/v2.5.0...HEAD
[2.5.0]: https://github.com/Shen-Language/shen-cl/compare/v2.4.0...v2.5.0
[2.4.0]: https://github.com/Shen-Language/shen-cl/compare/v2.3.0...v2.4.0
[2.3.0]: https://github.com/Shen-Language/shen-cl/compare/v2.2.0...v2.3.0
[2.2.0]: https://github.com/Shen-Language/shen-cl/compare/v2.1.0...v2.2.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Each tagged release on the project downloads page should have a set of pre-built

```shell
make pure
git checkout v2.4.0
git checkout v2.5.0
make fetch
make sbcl
make release
Expand Down
2 changes: 1 addition & 1 deletion src/primitives.lsp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
(DEFVAR *stoutput* *STANDARD-OUTPUT*)
(DEFVAR *sterror* *ERROR-OUTPUT*)
(DEFVAR *language* "Common Lisp")
(DEFVAR *port* 2.4)
(DEFVAR *port* 2.5)
(DEFVAR *porters* "Mark Tarver")

#+CLISP
Expand Down

0 comments on commit 3fa5e7c

Please sign in to comment.