Skip to content

Commit 4fcc807

Browse files
committed
Release 1.15.3
1 parent d3e52a2 commit 4fcc807

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## 1.15.3 - 2021-02-28
5+
- Fix a fiber bug that occured in deeply nested fibers
6+
- Add `unref` combinator to pegs.
7+
- Small docstring changes.
8+
49
## 1.15.2 - 2021-02-15
510
- Fix bug in windows version of `os/spawn` and `os/execute` with setting environment variables.
611
- Fix documentation typos.

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
project('janet', 'c',
2222
default_options : ['c_std=c99', 'b_lundef=false', 'default_library=both'],
23-
version : '1.15.2')
23+
version : '1.15.3')
2424

2525
# Global settings
2626
janet_path = join_paths(get_option('prefix'), get_option('libdir'), 'janet')

src/boot/boot.janet

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -779,7 +779,6 @@
779779

780780
(defn sort
781781
``Sort `ind` in-place, and return it. Uses quick-sort and is not a stable sort.
782-
783782
If a `before?` comparator function is provided, sorts elements using that,
784783
otherwise uses `<`.``
785784
[ind &opt before?]
@@ -793,7 +792,6 @@
793792

794793
(defn sorted
795794
``Returns a new sorted array without modifying the old one.
796-
797795
If a `before?` comparator function is provided, sorts elements using that,
798796
otherwise uses `<`.``
799797
[ind &opt before?]

src/conf/janetconf.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
#define JANET_VERSION_MAJOR 1
77
#define JANET_VERSION_MINOR 15
8-
#define JANET_VERSION_PATCH 2
8+
#define JANET_VERSION_PATCH 3
99
#define JANET_VERSION_EXTRA ""
10-
#define JANET_VERSION "1.15.2"
10+
#define JANET_VERSION "1.15.3"
1111

1212
/* #define JANET_BUILD "local" */
1313

test/suite0003.janet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@
485485
(def grammar
486486
(peg/compile
487487
~{:main (* :tagged -1)
488-
:tagged (unref (replace (* :open-tag :value :close-tag) ,struct))
488+
:tagged (unref (replace (* :open-tag :value :close-tag) ,struct))
489489
:open-tag (* (constant :tag) "<" (capture :w+ :tag-name) ">")
490490
:value (* (constant :value) (group (any (+ :tagged :untagged))))
491491
:close-tag (* "</" (backmatch :tag-name) ">")

0 commit comments

Comments
 (0)