Skip to content

Commit 66c4e5a

Browse files
committed
Prepare for patch release.
1 parent 884139e commit 66c4e5a

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
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.18.1 - 2021-10-16
5+
- Fix some documentation typos
6+
- Fix - Set pipes passed to subprocess to blocking mode.
7+
- Fix `-r` switch in repl.
8+
49
## 1.18.0 - 2021-10-10
510
- Allow `ev/cancel` to work on already scheduled fibers.
611
- Fix bugs with ev/ module.

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.18.0')
23+
version : '1.18.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 18
8-
#define JANET_VERSION_PATCH 0
8+
#define JANET_VERSION_PATCH 1
99
#define JANET_VERSION_EXTRA ""
10-
#define JANET_VERSION "1.18.0"
10+
#define JANET_VERSION "1.18.1"
1111

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

0 commit comments

Comments
 (0)