Skip to content

Commit e1c4fc2

Browse files
committed
Prepare for 1.17.1 release.
1 parent b903433 commit e1c4fc2

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
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.17.1 - 2021-08-29
5+
- Fix docstring typos
6+
- Add `make install-jpm-git` to make jpm co-install simpler if using makefile.
7+
- Fix bugs with starting ev/threads and fiber marshling.
8+
49
## 1.17.0 - 2021-08-21
510
- Add the `-E` flag for one-liners with the `short-fn` syntax for argument passing.
611
- Add support for threaded abstract types. Threaded abstract types can easily be shared between threads.

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', 'build.c_std=c99', 'b_lundef=false', 'default_library=both'],
23-
version : '1.17.0')
23+
version : '1.17.1')
2424

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

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 17
8-
#define JANET_VERSION_PATCH 0
8+
#define JANET_VERSION_PATCH 1
99
#define JANET_VERSION_EXTRA ""
10-
#define JANET_VERSION "1.17.0"
10+
#define JANET_VERSION "1.17.1"
1111

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

src/core/ev.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2519,7 +2519,7 @@ static JanetEVGenericMessage janet_go_thread_subr(JanetEVGenericMessage args) {
25192519
tstate.payload
25202520
};
25212521
janet_channel_push((JanetChannel *)supervisor,
2522-
janet_wrap_tuple(janet_tuple_n(pair, 2)), 2);
2522+
janet_wrap_tuple(janet_tuple_n(pair, 2)), 2);
25232523
} else if (flags & 0x1) {
25242524
/* No wait, just print to stderr */
25252525
janet_eprintf("thread start failure: %v\n", tstate.payload);

src/core/marsh.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1267,7 +1267,7 @@ static const uint8_t *unmarshal_one(
12671267
data = unmarshal_one_def(st, data, &def, flags + 1);
12681268
if (def->environments_length != len) {
12691269
janet_panicf("invalid function - env count does not match def (%d != %d)",
1270-
len, def->environments_length);
1270+
len, def->environments_length);
12711271
}
12721272
func->def = def;
12731273
for (int32_t i = 0; i < def->environments_length; i++) {

0 commit comments

Comments
 (0)