Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
tizoc committed Mar 7, 2021
1 parent a491e10 commit e187896
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)

## [Unreleased]

## [22.4] - 2020-03-07

### Fixed

- Fixed compilation of empty vector pattern matching.
Expand Down Expand Up @@ -396,7 +398,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
- y-or-n? fixed
- compiler warnings suppressed in CLisp

[Unreleased]: https://github.com/Shen-Language/shen-sources/compare/shen-22.3...HEAD
[Unreleased]: https://github.com/Shen-Language/shen-sources/compare/shen-22.4...HEAD
[22.4]: https://github.com/Shen-Language/shen-sources/compare/shen-22.3...shen-22.4
[22.3]: https://github.com/Shen-Language/shen-sources/compare/shen-22.2...shen-22.3
[22.2]: https://github.com/Shen-Language/shen-sources/compare/shen-22.1...shen-22.2
[22.1]: https://github.com/Shen-Language/shen-sources/compare/shen-22.0...shen-22.1
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Current Release](https://img.shields.io/badge/release-22.3-blue.svg)](https://github.com/Shen-Language/shen-sources/releases)
[![Current Release](https://img.shields.io/badge/release-22.4-blue.svg)](https://github.com/Shen-Language/shen-sources/releases)

# Official Shen Sources

Expand Down Expand Up @@ -32,7 +32,7 @@ Packages can be created for any version, but when uploading to the releases page

```
make pure
git checkout shen-22.3
git checkout shen-22.4
make fetch
make klambda
make release
Expand Down
13 changes: 7 additions & 6 deletions benchmarks/benchmarks.shen
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
setup _ -> skip
cleanup _ -> skip
begin [_ Description RunsPower] -> (output "Measuring 10^~S runs of: ~A~%" RunsPower Description)
finish [_ _ _ Start End] -> (output "run time: ~S secs~%" (- End Start)))
finish [_ _ _ Start End] -> (output " run time: ~S secs~%" (- End Start)))

(define save-report
setup _ -> (set *benchmark-results* [])
Expand All @@ -39,13 +39,14 @@
Results (map (run-benchmark Report) Benchmarks)
Cleanup (Report cleanup Benchmarks)
done))

\\(set _scm.*factorize-patterns* false)
(set *hush* true)
(load "benchmarks/data.shen")
(load "benchmarks/control-flow.shen")
(load "benchmarks/shen-compilation.shen")
\\(set shen-cl.*factorise-patterns* false)
\\(load "benchmarks/data.shen")
\\(load "benchmarks/control-flow.shen")
\\(load "benchmarks/shen-compilation.shen")
(load "benchmarks/pattern-matching.shen")
(load "benchmarks/equality-check.shen")
\\(load "benchmarks/equality-check.shen")
(set *hush* false)

(if (bound? *argv*)
Expand Down
2 changes: 1 addition & 1 deletion sources/declarations.shen
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
(set *infs* 0)
(set *hush* false)
(set *optimise* false)
(set *version* "Shen 22.3")
(set *version* "Shen 22.4")

(if (not (bound? *home-directory*))
(set *home-directory* "")
Expand Down

0 comments on commit e187896

Please sign in to comment.