1
0
mirror of https://github.com/janet-lang/janet synced 2025-11-02 00:23:02 +00:00

Release 1.15.3

This commit is contained in:
Calvin Rose
2021-02-28 13:02:45 -06:00
parent d3e52a2afb
commit 4fcc8075d4
5 changed files with 9 additions and 6 deletions

View File

@@ -779,7 +779,6 @@
(defn sort
``Sort `ind` in-place, and return it. Uses quick-sort and is not a stable sort.
If a `before?` comparator function is provided, sorts elements using that,
otherwise uses `<`.``
[ind &opt before?]
@@ -793,7 +792,6 @@
(defn sorted
``Returns a new sorted array without modifying the old one.
If a `before?` comparator function is provided, sorts elements using that,
otherwise uses `<`.``
[ind &opt before?]

View File

@@ -5,9 +5,9 @@
#define JANET_VERSION_MAJOR 1
#define JANET_VERSION_MINOR 15
#define JANET_VERSION_PATCH 2
#define JANET_VERSION_PATCH 3
#define JANET_VERSION_EXTRA ""
#define JANET_VERSION "1.15.2"
#define JANET_VERSION "1.15.3"
/* #define JANET_BUILD "local" */