Skip to content

Commit 3fa5e7c

Browse files
committed
Release 2.5.0
1 parent 85e5b7c commit 3fa5e7c

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
88

99
## [Unreleased]
1010

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

2426
## [2.4.0] - 2018-10-08
2527

26-
Updated to Shen Open Source Kernel 21.1.
28+
**Updated to Shen Open Source Kernel 21.1**
2729

2830
## [2.3.0] - 2018-06-01
2931

30-
Updated to Shen Open Source Kernel 21.0.
32+
**Updated to Shen Open Source Kernel 21.0**
3133

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

5961
## [2.1.0] - 2017-05-22
6062

63+
**Updated to Shen Open Source Kernel 20.1**
64+
6165
### Added
6266
- Support for CCL (Clozure Common Lisp).
6367
- Makefile.
6468
- CHANGELOG.
6569
- Travis-CI build script.
6670

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

75-
[Unreleased]: https://github.com/Shen-Language/shen-cl/compare/v2.4.0...HEAD
78+
[Unreleased]: https://github.com/Shen-Language/shen-cl/compare/v2.5.0...HEAD
79+
[2.5.0]: https://github.com/Shen-Language/shen-cl/compare/v2.4.0...v2.5.0
7680
[2.4.0]: https://github.com/Shen-Language/shen-cl/compare/v2.3.0...v2.4.0
7781
[2.3.0]: https://github.com/Shen-Language/shen-cl/compare/v2.2.0...v2.3.0
7882
[2.2.0]: https://github.com/Shen-Language/shen-cl/compare/v2.1.0...v2.2.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Each tagged release on the project downloads page should have a set of pre-built
7171

7272
```shell
7373
make pure
74-
git checkout v2.4.0
74+
git checkout v2.5.0
7575
make fetch
7676
make sbcl
7777
make release

src/primitives.lsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
(DEFVAR *stoutput* *STANDARD-OUTPUT*)
3030
(DEFVAR *sterror* *ERROR-OUTPUT*)
3131
(DEFVAR *language* "Common Lisp")
32-
(DEFVAR *port* 2.4)
32+
(DEFVAR *port* 2.5)
3333
(DEFVAR *porters* "Mark Tarver")
3434

3535
#+CLISP

0 commit comments

Comments
 (0)